diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-05-29 08:13:58 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-05-29 08:13:58 (GMT) |
commit | b44c4520d965788aa6d24edab36d89103b0a1aea (patch) | |
tree | 2c649fcb5f7518dace35b8241c9f4ffd60eda14f /Lib/rfc822.py | |
parent | 6ee36a5a8cf7aff3a2b5f3ab50bb46a31c377750 (diff) | |
download | cpython-b44c4520d965788aa6d24edab36d89103b0a1aea.zip cpython-b44c4520d965788aa6d24edab36d89103b0a1aea.tar.gz cpython-b44c4520d965788aa6d24edab36d89103b0a1aea.tar.bz2 |
Issue #27125: Fix various errors like “will [be] inherited”
Diffstat (limited to 'Lib/rfc822.py')
-rw-r--r-- | Lib/rfc822.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/rfc822.py b/Lib/rfc822.py index c1d0865..9a5b8a2 100644 --- a/Lib/rfc822.py +++ b/Lib/rfc822.py @@ -961,7 +961,7 @@ def formatdate(timeval=None): According to RFC 1123, day and month names must always be in English. If not for that, this code could use strftime(). It - can't because strftime() honors the locale and could generated + can't because strftime() honors the locale and could generate non-English names. """ if timeval is None: |