diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2021-08-31 13:59:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-31 13:59:52 (GMT) |
commit | 3c65457156d87e55010507d616b4eecb7a02883d (patch) | |
tree | a472bfd630afb07817c381852549f24bdfb9d01f /Lib/email | |
parent | 08767c73b5bf1f28792d5fef7f41d52822a4989f (diff) | |
download | cpython-3c65457156d87e55010507d616b4eecb7a02883d.zip cpython-3c65457156d87e55010507d616b4eecb7a02883d.tar.gz cpython-3c65457156d87e55010507d616b4eecb7a02883d.tar.bz2 |
bpo-45060: Get rid of few uses of the equality operators with None (GH-28087)
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: |