Issue 13079: Wrong datetime format in PEP3101 (original) (raw)

Issue13079

Created on 2011-09-30 17:51 by ojab, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg144698 - (view) Author: (ojab) Date: 2011-09-30 17:51
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())
msg144705 - (view) Author: Eric V. Smith (eric.smith) * (Python committer) Date: 2011-09-30 20:36
Thanks for the report. Fixed in 9a9bd05b9fca.
History
Date User Action Args
2022-04-11 14:57:22 admin set github: 57288
2011-09-30 20:36:54 eric.smith set status: open -> closedresolution: fixedmessages: +
2011-09-30 19:42:19 ezio.melotti set nosy: + eric.smith, ezio.melotti
2011-09-30 17:51:59 ojab create