[issue13079] Wrong datetime format in PEP3101

2011-09-30 Thread Eric V. Smith
Eric V. Smith added the comment: Thanks for the report. Fixed in 9a9bd05b9fca. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue13079] Wrong datetime format in PEP3101

2011-09-30 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +eric.smith, ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue13079] Wrong datetime format in PEP3101

2011-09-30 Thread ojab
New submission from ojab : Example in pep3101 is "Today is: {0:a b d H:M:S Y}".format(datetime.now()) but it should be "Today is: {0:%a %b %d %H:%M:%S %Y}".format(datetime.now()) -- assignee: docs@python components: Documentation messages: 144698 nosy: docs@python, ojab priority: normal