diff options
author | Brad Wolfe <brad.wolfe@gmail.com> | 2022-12-10 10:20:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-10 10:20:18 (GMT) |
commit | d5f8a2b6ad408368e728a389da918cead3ef7ee9 (patch) | |
tree | 8263ec8f2a958f421671c19950c7ec6756b2b357 /Doc | |
parent | e477348f36eff3f63ba509582622ea620fa9ae5b (diff) | |
download | cpython-d5f8a2b6ad408368e728a389da918cead3ef7ee9.zip cpython-d5f8a2b6ad408368e728a389da918cead3ef7ee9.tar.gz cpython-d5f8a2b6ad408368e728a389da918cead3ef7ee9.tar.bz2 |
gh-99728: correct typo in `datetime` format codes documentation (#99750)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/datetime.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst index 0b39512..8bfed19 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -2602,7 +2602,7 @@ Notes: (9) When used with the :meth:`strptime` method, the leading zero is optional - for formats ``%d``, ``%m``, ``%H``, ``%I``, ``%M``, ``%S``, ``%J``, ``%U``, + for formats ``%d``, ``%m``, ``%H``, ``%I``, ``%M``, ``%S``, ``%j``, ``%U``, ``%W``, and ``%V``. Format ``%y`` does require a leading zero. .. rubric:: Footnotes |