diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-01-18 09:33:31 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-01-18 09:33:31 (GMT) |
commit | 82e07b92b330ec885968ca98fac5284c45037eac (patch) | |
tree | f8cf075bd42432e50b25979f28bc83a606bbf828 /Lib/email | |
parent | acdb7c158a53d67a7c1e309023248a489cd18295 (diff) | |
parent | d3faf43f9ba7da0ae504c9186b10d0fa3a8eb300 (diff) | |
download | cpython-82e07b92b330ec885968ca98fac5284c45037eac.zip cpython-82e07b92b330ec885968ca98fac5284c45037eac.tar.gz cpython-82e07b92b330ec885968ca98fac5284c45037eac.tar.bz2 |
Issue #23181: More "codepoint" -> "code point".
Diffstat (limited to 'Lib/email')
-rw-r--r-- | Lib/email/message.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/message.py b/Lib/email/message.py index 727cd1e..3d3138f 100644 --- a/Lib/email/message.py +++ b/Lib/email/message.py @@ -273,7 +273,7 @@ class Message: bpayload = payload.encode('ascii') except UnicodeError: # This won't happen for RFC compliant messages (messages - # containing only ASCII codepoints in the unicode input). + # containing only ASCII code points in the unicode input). # If it does happen, turn the string into bytes in a way # guaranteed not to fail. bpayload = payload.encode('raw-unicode-escape') |