summaryrefslogtreecommitdiffstats
path: root/Lib/email/_encoded_words.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2013-03-11 22:34:00 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2013-03-11 22:34:00 (GMT)
commit0f84764a09401bb93f544141a433db5acd751dd2 (patch)
tree738adf0e585f39a92f5f3b414fc3feeab636e196 /Lib/email/_encoded_words.py
parent98472b839674a78b0cbb09f50a61f70019591a4a (diff)
downloadcpython-0f84764a09401bb93f544141a433db5acd751dd2.zip
cpython-0f84764a09401bb93f544141a433db5acd751dd2.tar.gz
cpython-0f84764a09401bb93f544141a433db5acd751dd2.tar.bz2
Issue #17047: remove doubled words added in 3.3
as reported by Serhiy Storchaka and Matthew Barnett.
Diffstat (limited to 'Lib/email/_encoded_words.py')
-rw-r--r--Lib/email/_encoded_words.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/_encoded_words.py b/Lib/email/_encoded_words.py
index e9f6e20..9e0cc75 100644
--- a/Lib/email/_encoded_words.py
+++ b/Lib/email/_encoded_words.py
@@ -14,7 +14,7 @@ to a public API if there is demand.
# cte (Content Transfer Encoding) is either 'q' or 'b' (ignoring case). In
# theory other letters could be used for other encodings, but in practice this
# (almost?) never happens. There could be a public API for adding entries
-# to to the CTE tables, but YAGNI for now. 'q' is Quoted Printable, 'b' is
+# to the CTE tables, but YAGNI for now. 'q' is Quoted Printable, 'b' is
# Base64. The meaning of encoded_string should be obvious. 'lang' is optional
# as indicated by the brackets (they are not part of the syntax) but is almost
# never encountered in practice.