bpo-9811: [doc] strftime handling of unsupported format specifiers is… · python/cpython@b1873d1 (original) (raw)

Original file line number Diff line number Diff line change
@@ -2431,7 +2431,8 @@ incomplete or ambiguous ISO 8601 directives will raise a :exc:`ValueError`.
2431 2431 The full set of format codes supported varies across platforms, because Python
2432 2432 calls the platform C library's :func:`strftime` function, and platform
2433 2433 variations are common. To see the full set of format codes supported on your
2434 -platform, consult the :manpage:`strftime(3)` documentation.
2434 +platform, consult the :manpage:`strftime(3)` documentation. There are also
2435 +differences between platforms in handling of unsupported format specifiers.
2435 2436
2436 2437 .. versionadded:: 3.6
2437 2438 ``%G``, ``%u`` and ``%V`` were added.