diff options
author | Georg Brandl <georg@python.org> | 2011-03-06 11:09:51 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-03-06 11:09:51 +0100 |
commit | 6dea5f57022e0c1bfb9ea52cda2f1d4f50a34727 (patch) | |
tree | c3b7a1dcda0efcae3f6a01485c72041147eb083c | |
parent | f125a9a9aafa39399188c5d3bcc18c092bd0b779 (diff) | |
download | cpython-git-6dea5f57022e0c1bfb9ea52cda2f1d4f50a34727.tar.gz |
#11294: add missing ERA_T_FMT to locale docs.
-rw-r--r-- | Doc/library/locale.rst | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Doc/library/locale.rst b/Doc/library/locale.rst index f587d07df1..85dad99016 100644 --- a/Doc/library/locale.rst +++ b/Doc/library/locale.rst @@ -165,7 +165,7 @@ 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 - represent time and date in a locale-specific way. + represent date and time in a locale-specific way. .. data:: D_FMT @@ -250,12 +250,17 @@ The :mod:`locale` module defines the following exception and functions: .. data:: ERA_D_T_FMT - Get a format string for :func:`strftime` to represent dates and times in a + Get a format string for :func:`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 time in a + Get a format string for :func:`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 locale-specific era-based way. .. data:: ALT_DIGITS |