Lydia Leong - 2005-02-07

Logged In: YES
user_id=159820

From Python 2.4's change list:

"time.strftime() now checks that the values in its time
tuple argument are within the proper boundaries to prevent
possible crashes from the platform's C library
implementation of strftime(). Can possibly break code that
uses values outside the range that didn't cause problems
previously (such as sitting day of year to 0)."

Unfortunately, Charm uses exactly this construct a lot, when
it doesn't have a complete time tuple -- it sets the
remaining values to 0, including day of year. I'll figure
out some workaround.