summaryrefslogtreecommitdiffstats
path: root/Lib/email/quoprimime.py
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2022-02-03 09:20:08 (GMT)
committerGitHub <noreply@github.com>2022-02-03 09:20:08 (GMT)
commit0cbdd2131195b0d313762968f604e80a3e65ca9f (patch)
tree3f512c22e4ef6bbfc9d2246ad26446271e0e3ce7 /Lib/email/quoprimime.py
parent6394e981adaca2c0daa36c8701611e250d74024c (diff)
downloadcpython-0cbdd2131195b0d313762968f604e80a3e65ca9f.zip
cpython-0cbdd2131195b0d313762968f604e80a3e65ca9f.tar.gz
cpython-0cbdd2131195b0d313762968f604e80a3e65ca9f.tar.bz2
bpo-46565: `del` loop vars that are leaking into module namespaces (GH-30993)
Diffstat (limited to 'Lib/email/quoprimime.py')
-rw-r--r--Lib/email/quoprimime.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/email/quoprimime.py b/Lib/email/quoprimime.py
index 94534f7..27fcbb5 100644
--- a/Lib/email/quoprimime.py
+++ b/Lib/email/quoprimime.py
@@ -148,6 +148,7 @@ def header_encode(header_bytes, charset='iso-8859-1'):
_QUOPRI_BODY_ENCODE_MAP = _QUOPRI_BODY_MAP[:]
for c in b'\r\n':
_QUOPRI_BODY_ENCODE_MAP[c] = chr(c)
+del c
def body_encode(body, maxlinelen=76, eol=NL):
"""Encode with quoted-printable, wrapping at maxlinelen characters.