summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-06-18 19:21:27 (GMT)
committerGitHub <noreply@github.com>2019-06-18 19:21:27 (GMT)
commit35aa0b0ced91cfb48d9dcf80a2ca8683e61f9b3e (patch)
tree4d3c74ed21ac0ab2d240584d67049e2490a20636 /Misc
parenta7072ff56e216683f949b353255cce099f5cdb24 (diff)
downloadcpython-35aa0b0ced91cfb48d9dcf80a2ca8683e61f9b3e.zip
cpython-35aa0b0ced91cfb48d9dcf80a2ca8683e61f9b3e.tar.gz
cpython-35aa0b0ced91cfb48d9dcf80a2ca8683e61f9b3e.tar.bz2
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>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Documentation/2019-06-17-09-36-46.bpo-34903.r_wGRc.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Documentation/2019-06-17-09-36-46.bpo-34903.r_wGRc.rst b/Misc/NEWS.d/next/Documentation/2019-06-17-09-36-46.bpo-34903.r_wGRc.rst
new file mode 100644
index 0000000..7e277f4
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2019-06-17-09-36-46.bpo-34903.r_wGRc.rst
@@ -0,0 +1 @@
+Documented that in :meth:`datetime.datetime.strptime()`, the leading zero in some two-digit formats is optional. Patch by Mike Gleen.