From d3faf43f9ba7da0ae504c9186b10d0fa3a8eb300 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Sun, 18 Jan 2015 11:28:37 +0200 Subject: Issue #23181: More "codepoint" -> "code point". --- Lib/email/message.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/email/message.py') diff --git a/Lib/email/message.py b/Lib/email/message.py index a179f8e374..2f37dbb892 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') -- cgit v1.2.1