diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2011-01-08 20:47:21 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2011-01-08 20:47:21 (GMT) |
commit | 2997837158d4715749632f4edbdf690ba619dc85 (patch) | |
tree | ee5763877eeccc50fb7f770985d8ccd26107e353 /Doc/library/time.rst | |
parent | 3ec899fc0d9b3f233e3d449576ed3486bcb3e238 (diff) | |
download | cpython-2997837158d4715749632f4edbdf690ba619dc85.zip cpython-2997837158d4715749632f4edbdf690ba619dc85.tar.gz cpython-2997837158d4715749632f4edbdf690ba619dc85.tar.bz2 |
Fixed documentation to reflect recent changes for years < 1900.
Diffstat (limited to 'Doc/library/time.rst')
-rw-r--r-- | Doc/library/time.rst | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/Doc/library/time.rst b/Doc/library/time.rst index dc102d6..b8745a6 100644 --- a/Doc/library/time.rst +++ b/Doc/library/time.rst @@ -120,10 +120,19 @@ The module defines the following functions and data items: .. data:: accept2dyear - Boolean value indicating whether two-digit year values will be accepted. This - is true by default, but will be set to false if the environment variable - :envvar:`PYTHONY2K` has been set to a non-empty string. It may also be modified - at run time. + Boolean value indicating whether two-digit year values will be + mapped to 1969--2068 range by :func:`asctime`, :func:`mktime`, and + :func:`strftime` functions. This is true by default, but will be + set to false if the environment variable :envvar:`PYTHONY2K` has + been set to a non-empty string. It may also be modified at run + time. + + .. deprecated:: 3.2 + Mapping of 2-digit year values by :func:`asctime`, + :func:`mktime`, and :func:`strftime` functions to 1969--2068 + range is deprecated. Programs that need to process 2-digit + years should use ``%y`` code available in :func:`strptime` + function or convert 2-digit year values to 4-digit themselves. .. data:: altzone |