]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-9811: [doc] strftime handling of unsupported format specifiers is platform depend...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 10 Sep 2021 19:53:34 +0000 (12:53 -0700)
committerGitHub <noreply@github.com>
Fri, 10 Sep 2021 19:53:34 +0000 (21:53 +0200)
(cherry picked from commit e86bcfa58080f152f242c756f625f4015671f168)

Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
Doc/library/datetime.rst

index dae0dd7aa55898d84c9a43f18f69411bba719948..196aa84473f135aab0c029c49d60026005318ce3 100644 (file)
@@ -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.