[issue2782] datetime/date strftime() method and time.strftime() inconsistency

2008-06-02 Thread Gregory P. Smith
Gregory P. Smith [EMAIL PROTECTED] added the comment: Fixed in trunk (2.6) r63887. -- assignee: gregory.p.smith - resolution: - fixed status: open - closed versions: -Python 2.6 ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue2782

[issue2782] datetime/date strftime() method and time.strftime() inconsistency

2008-05-25 Thread Gregory P. Smith
Gregory P. Smith [EMAIL PROTECTED] added the comment: Yes, sounds like a bug. I'll fix it. But should time.strftime allow a unicode format string as input in the first place? For backwards compatibility I'd say yes. But.. Sane output can not be guaranteed from time.strftime when given a

[issue2782] datetime/date strftime() method and time.strftime() inconsistency

2008-05-09 Thread broadus jones
Changes by broadus jones [EMAIL PROTECTED]: -- nosy: +sbj3 __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2782 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue2782] datetime/date strftime() method and time.strftime() inconsistency

2008-05-09 Thread Alexandr Zamaraev
Changes by Alexandr Zamaraev [EMAIL PROTECTED]: -- nosy: +shura_zam __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2782 __ ___ Python-bugs-list mailing list

[issue2782] datetime/date strftime() method and time.strftime() inconsistency

2008-05-07 Thread Andrii V. Mishkovskyi
New submission from Andrii V. Mishkovskyi [EMAIL PROTECTED]: datetime and date strftime() method does additional check on input format, thus being completely different from time's module time.strftime() method behavior. There are two ways to fix this: 1. Add an explicit note about this behavior