]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-34903: Document that some strptime formats only require 1 digit (GH-14149)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 18 Jun 2019 18:55:27 +0000 (11:55 -0700)
committerGitHub <noreply@github.com>
Tue, 18 Jun 2019 18:55:27 +0000 (11:55 -0700)
commit452b417e34489614b3003b8d08148269096239d5
tree9ba681655ebec721b100c147f0b6c5f5ede4684c
parent624c9a27b10df4355eb2caf04654c730dfa412dd
bpo-34903: Document that some strptime formats only require 1 digit (GH-14149)

For datetime.datetime.strptime(), the leading zero for some two-digit formats is optional.

This adds a footnote to the strftime/strptime documentation to reflect this fact, and adds some tests to ensure that it is true.

bpo-34903
(cherry picked from commit 6b9c204ee77a0de87d6f51a3d4547a18604cef9e)

Co-authored-by: Mike Gleen <mike.gleen@gmail.com>
Doc/library/datetime.rst
Lib/test/datetimetester.py
Misc/NEWS.d/next/Documentation/2019-06-17-09-36-46.bpo-34903.r_wGRc.rst [new file with mode: 0644]