it appears that std.date.parse maybe be off by one...
long time = std.date.parse("10/26/00");
printf(std.string.toString(MonthFromTime(time)));
is 9
january is 0, december is 11
Comment #1 by bugzilla — 2006-04-15T03:12:10Z
std.date.MonthFromTime() returns months in the range 0..11, and is supposed to. I'll fix the documentation.