diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2021-09-01 06:51:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-01 06:51:01 (GMT) |
commit | e09dd8aafd6f9aef03945c417267806d47084a5d (patch) | |
tree | 3dcd99d66fadc1320794057aa43ff21da7fdf36e /Lib/email | |
parent | e527f79fa8b472dd534fc360e998fe8213e6471e (diff) | |
download | cpython-e09dd8aafd6f9aef03945c417267806d47084a5d.zip cpython-e09dd8aafd6f9aef03945c417267806d47084a5d.tar.gz cpython-e09dd8aafd6f9aef03945c417267806d47084a5d.tar.bz2 |
[3.9] bpo-45060: Get rid of few uses of the equality operators with None (GH-28087). (GH-28093)
(cherry picked from commit 3c65457156d87e55010507d616b4eecb7a02883d)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Lib/email')
-rw-r--r-- | Lib/email/contentmanager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/contentmanager.py b/Lib/email/contentmanager.py index 3cf62dc..fcf278d 100644 --- a/Lib/email/contentmanager.py +++ b/Lib/email/contentmanager.py @@ -144,7 +144,7 @@ def _encode_text(string, charset, cte, policy): linesep = policy.linesep.encode('ascii') def embedded_body(lines): return linesep.join(lines) + linesep def normal_body(lines): return b'\n'.join(lines) + b'\n' - if cte==None: + if cte is None: # Use heuristics to decide on the "best" encoding. if max((len(x) for x in lines), default=0) <= policy.max_line_length: try: |