diff options
author | Brett Cannon <bcannon@gmail.com> | 2003-08-08 01:53:05 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2003-08-08 01:53:05 (GMT) |
commit | f5c96fb74d86e844af564acdc54ce3f1e70df56c (patch) | |
tree | 5d2af3833fc8b5490afab35935f4f6d7054bdd22 /Lib/_strptime.py | |
parent | e723e453a1f11f4865f25d93d3cf20280d9f831a (diff) | |
download | cpython-f5c96fb74d86e844af564acdc54ce3f1e70df56c.zip cpython-f5c96fb74d86e844af564acdc54ce3f1e70df56c.tar.gz cpython-f5c96fb74d86e844af564acdc54ce3f1e70df56c.tar.bz2 |
Fix docstring in LocaleTime.
Diffstat (limited to 'Lib/_strptime.py')
-rw-r--r-- | Lib/_strptime.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/_strptime.py b/Lib/_strptime.py index 353d42b..a6e2c8d 100644 --- a/Lib/_strptime.py +++ b/Lib/_strptime.py @@ -37,9 +37,9 @@ class LocaleTime(object): ATTRIBUTES: f_weekday -- full weekday names (7-item list) a_weekday -- abbreviated weekday names (7-item list) - f_month -- full weekday names (14-item list; dummy value in [0], which + f_month -- full month names (13-item list; dummy value in [0], which is added by code) - a_month -- abbreviated weekday names (13-item list, dummy value in + a_month -- abbreviated month names (13-item list, dummy value in [0], which is added by code) am_pm -- AM/PM representation (2-item list) LC_date_time -- format string for date/time representation (string) |