diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2012-06-02 16:21:06 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2012-06-02 16:21:06 (GMT) |
commit | 5fae78c09d7f26c2fa05e52e610f142c3eb08917 (patch) | |
tree | 1f565d386b2339eae85d60c4ac5b8f2ef16a65a3 | |
parent | de738a1b82a27010778b30b66258bd206b7c9c1e (diff) | |
download | cpython-5fae78c09d7f26c2fa05e52e610f142c3eb08917.zip cpython-5fae78c09d7f26c2fa05e52e610f142c3eb08917.tar.gz cpython-5fae78c09d7f26c2fa05e52e610f142c3eb08917.tar.bz2 |
refer to time.strftime
-rw-r--r-- | Doc/library/locale.rst | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Doc/library/locale.rst b/Doc/library/locale.rst index 36fbde8..d446d72 100644 --- a/Doc/library/locale.rst +++ b/Doc/library/locale.rst @@ -164,22 +164,22 @@ The :mod:`locale` module defines the following exception and functions: .. data:: D_T_FMT - Get a string that can be used as a format string for :func:`strftime` to + Get a string that can be used as a format string for :func:`time.strftime` to represent date and time in a locale-specific way. .. data:: D_FMT - Get a string that can be used as a format string for :func:`strftime` to + Get a string that can be used as a format string for :func:`time.strftime` to represent a date in a locale-specific way. .. data:: T_FMT - Get a string that can be used as a format string for :func:`strftime` to + Get a string that can be used as a format string for :func:`time.strftime` to represent a time in a locale-specific way. .. data:: T_FMT_AMPM - Get a format string for :func:`strftime` to represent time in the am/pm + Get a format string for :func:`time.strftime` to represent time in the am/pm format. .. data:: DAY_1 ... DAY_7 @@ -243,24 +243,24 @@ The :mod:`locale` module defines the following exception and functions: then-emperor's reign. Normally it should not be necessary to use this value directly. Specifying - the ``E`` modifier in their format strings causes the :func:`strftime` + the ``E`` modifier in their format strings causes the :func:`time.strftime` function to use this information. The format of the returned string is not specified, and therefore you should not assume knowledge of it on different systems. .. data:: ERA_D_T_FMT - Get a format string for :func:`strftime` to represent date and time in a + Get a format string for :func:`time.strftime` to represent date and time in a locale-specific era-based way. .. data:: ERA_D_FMT - Get a format string for :func:`strftime` to represent a date in a + Get a format string for :func:`time.strftime` to represent a date in a locale-specific era-based way. .. data:: ERA_T_FMT - Get a format string for :func:`strftime` to represent a time in a + Get a format string for :func:`time.strftime` to represent a time in a locale-specific era-based way. .. data:: ALT_DIGITS |