[issue34158] Documentation of datetime '%z' format code is odd

2018-10-15 Thread Ned Deily
Ned Deily added the comment: I assume this can now be closed. Thanks, everyone! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 ___ Python tracker

[issue34158] Documentation of datetime '%z' format code is odd

2018-10-05 Thread Ned Deily
Ned Deily added the comment: New changeset 0991b9bb94036e0f271d223c8db7d81980c76736 by Ned Deily (Miss Islington (bot)) in branch '3.7': [3.7] bpo-34158: Documentation UTC offset update (GH-8377) (GH-9732) https://github.com/python/cpython/commit/0991b9bb94036e0f271d223c8db7d81980c76736

[issue34158] Documentation of datetime '%z' format code is odd

2018-10-05 Thread miss-islington
Change by miss-islington : -- pull_requests: +9118 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34158] Documentation of datetime '%z' format code is odd

2018-10-05 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: New changeset 92878829c31ab2fc71c60555ce87a5f6cbc876f0 by Alexander Belopolsky (Christophe Nanteuil) in branch 'master': bpo-34158: Documentation UTC offset update (GH-8377)

[issue34158] Documentation of datetime '%z' format code is odd

2018-07-24 Thread Christophe Nanteuil
Christophe Nanteuil added the comment: PR updated according to Martin Panter comments. -- ___ Python tracker ___ ___

[issue34158] Documentation of datetime '%z' format code is odd

2018-07-23 Thread Paul Ganssle
Change by Paul Ganssle : -- nosy: +p-ganssle ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34158] Documentation of datetime '%z' format code is odd

2018-07-22 Thread Martin Panter
Martin Panter added the comment: FWIW more oddities with this paragraph could be fixed by: * removing the first “and” from “HH is . . ., [and] MM is . . ., SS is . . . and uu is”, * changing the condition for omitting “uu” from “a whole number of [minutes]” to “seconds”, and *

[issue34158] Documentation of datetime '%z' format code is odd

2018-07-21 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +7908 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34158] Documentation of datetime '%z' format code is odd

2018-07-21 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Added as part of 018d353c1c8c87767d2335cd884017c2ce12e045 and a fix regarding duplicate words for that part was added at bac2d5ba30339298db7d4caa9c8cd31d807cf081. Relevant format string at

[issue34158] Documentation of datetime '%z' format code is odd

2018-07-19 Thread Christophe Nanteuil
New submission from Christophe Nanteuil : In § 8.1.8. "strftime() and strptime() Behavior", the documentation states that "%z" format code is a string of the form '±HHMM[SS[.uu]]' where uu is a 2-digit string giving the number of UTC offset microseconds. I think it's a 6-digit string.