diff options
author | Georg Brandl <georg@python.org> | 2013-10-13 16:28:25 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-13 16:28:25 (GMT) |
commit | b7117af07d20aefa12c95c5320c13b88afdf5a58 (patch) | |
tree | bdd624f12dd04c46223324152eb067240c201738 /Doc/library/datetime.rst | |
parent | 04d11a73fa0d84a6386e1b31db00f6b9cca08184 (diff) | |
download | cpython-b7117af07d20aefa12c95c5320c13b88afdf5a58.zip cpython-b7117af07d20aefa12c95c5320c13b88afdf5a58.tar.gz cpython-b7117af07d20aefa12c95c5320c13b88afdf5a58.tar.bz2 |
Refer to strftime(3) manpage for platform specific format codes.
Suggested by Skip Montanaro on docs@.
Diffstat (limited to 'Doc/library/datetime.rst')
-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 30b63e1..6ca15b7 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -1782,7 +1782,8 @@ values. If they're used anyway, ``0`` is substituted for them. 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. +variations are common. To see the full set of format codes supported on your +platform, consult the :manpage:`strftime(3)` documentation. The following is a list of all the format codes that the C standard (1989 version) requires, and these work on all platforms with a standard C |