diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-09-10 12:53:11 -0700 |
---|---|---|
committer | Pablo Galindo <pablogsal@gmail.com> | 2021-09-29 12:34:16 +0100 |
commit | b1873d1e24ed5ef39f37ca3090c2f0c2b34ce23f (patch) | |
tree | 28da0fc9dbbd9c947128121f4ef0a6391c94882e | |
parent | 490a7427dce1cba55a9fbdbccd092e4c8ffae05f (diff) | |
download | cpython-git-b1873d1e24ed5ef39f37ca3090c2f0c2b34ce23f.tar.gz |
bpo-9811: [doc] strftime handling of unsupported format specifiers is platform dependent (GH-28264) (GH-28277)
(cherry picked from commit e86bcfa58080f152f242c756f625f4015671f168)
Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
-rw-r--r-- | Doc/library/datetime.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst index dae0dd7aa5..196aa84473 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -2431,7 +2431,8 @@ incomplete or ambiguous ISO 8601 directives will raise a :exc:`ValueError`. The full set of format codes supported varies across platforms, because Python calls the platform C library's :func:`strftime` function, and platform variations are common. To see the full set of format codes supported on your -platform, consult the :manpage:`strftime(3)` documentation. +platform, consult the :manpage:`strftime(3)` documentation. There are also +differences between platforms in handling of unsupported format specifiers. .. versionadded:: 3.6 ``%G``, ``%u`` and ``%V`` were added. |