diff options
author | Victor Stinner <vstinner@python.org> | 2022-06-22 17:14:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-22 17:14:27 (GMT) |
commit | 47e35625ff2c4e6511a12e7178c3e4fbc965b634 (patch) | |
tree | e9a6b4d687233135f993260b12011613b9189058 /Doc/includes | |
parent | 8661c5053fbe3e246289d77e49a813470b3a16f7 (diff) | |
download | cpython-47e35625ff2c4e6511a12e7178c3e4fbc965b634.zip cpython-47e35625ff2c4e6511a12e7178c3e4fbc965b634.tar.gz cpython-47e35625ff2c4e6511a12e7178c3e4fbc965b634.tar.bz2 |
gh-84623: Remove unused imports (#94132)
Diffstat (limited to 'Doc/includes')
-rw-r--r-- | Doc/includes/email-headers.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/includes/email-headers.py b/Doc/includes/email-headers.py index 2c42145..5def0c9 100644 --- a/Doc/includes/email-headers.py +++ b/Doc/includes/email-headers.py @@ -1,5 +1,6 @@ # Import the email modules we'll need -from email.parser import BytesParser, Parser +#from email.parser import BytesParser +from email.parser import Parser from email.policy import default # If the e-mail headers are in a file, uncomment these two lines: |