File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -1782,7 +1782,8 @@ values. If they're used anyway, ``0`` is substituted for them.
17821782
17831783The full set of format codes supported varies across platforms, because Python
17841784calls the platform C library's :func: `strftime ` function, and platform
1785- variations are common.
1785+ variations are common. To see the full set of format codes supported on your
1786+ platform, consult the :manpage: `strftime(3)` documentation.
17861787
17871788The following is a list of all the format codes that the C standard (1989
17881789version) requires, and these work on all platforms with a standard C
Original file line number Diff line number Diff line change @@ -471,8 +471,10 @@ The module defines the following functions and data items:
471471 >>> strftime("%a, %d %b %Y %H:%M:%S +0000", gmtime())
472472 'Thu, 28 Jun 2001 14:17:15 +0000'
473473
474- Additional directives may be supported on certain platforms, but only the ones
475- listed here have a meaning standardized by ANSI C.
474+ Additional directives may be supported on certain platforms, but only the
475+ ones listed here have a meaning standardized by ANSI C. To see the full set
476+ of format codes supported on your platform, consult the :manpage: `strftime(3)`
477+ documentation.
476478
477479 On some platforms, an optional field width and precision specification can
478480 immediately follow the initial ``'%' `` of a directive in the following order;
You can’t perform that action at this time.
0 commit comments