diff options
author | Michael Morehouse <640167+yawpitch@users.noreply.github.com> | 2019-12-23 14:37:47 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-12-23 14:37:47 (GMT) |
commit | e7b406f4e20e248d24079f97d7c8b93e5a45249e (patch) | |
tree | 6e630b50a5e0bc2609b154567d51992b95ee735a /Doc/library/datetime.rst | |
parent | 068768faf6b82478de239d7ab903dfb249ad96a4 (diff) | |
download | cpython-e7b406f4e20e248d24079f97d7c8b93e5a45249e.zip cpython-e7b406f4e20e248d24079f97d7c8b93e5a45249e.tar.gz cpython-e7b406f4e20e248d24079f97d7c8b93e5a45249e.tar.bz2 |
[typo] fix dupe in datetime.fromisoformat docs (GH-17295)
Fixes a nearly word for word duplication of a sentence that appears
earlier in the caution section of datetime.datetime.fromisoformat in
Doc/Library/datetime.rst.
No issue created as it's a trivial change.
Automerge-Triggered-By: @pganssle
Diffstat (limited to 'Doc/library/datetime.rst')
-rw-r--r-- | Doc/library/datetime.rst | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst index 401118f..22ecbb5 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -997,8 +997,6 @@ Other constructors, all class methods: as the inverse operation of :meth:`datetime.isoformat`. A more full-featured ISO 8601 parser, ``dateutil.parser.isoparse`` is available in the third-party package `dateutil <https://dateutil.readthedocs.io/en/stable/parser.html#dateutil.parser.isoparse>`__. - This does not support parsing arbitrary ISO 8601 strings - it is only intended - as the inverse operation of :meth:`datetime.isoformat`. Examples:: |