diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-03-20 08:16:38 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-03-20 08:16:38 (GMT) |
commit | 7fa767e517882f4d3503d168d3a4d4caad317752 (patch) | |
tree | cc4c73326ee706456b2c8de8530fed453e582b69 /Lib/nntplib.py | |
parent | 69b1e261fc703106b44095796d78ba6aacbbdb63 (diff) | |
download | cpython-7fa767e517882f4d3503d168d3a4d4caad317752.zip cpython-7fa767e517882f4d3503d168d3a4d4caad317752.tar.gz cpython-7fa767e517882f4d3503d168d3a4d4caad317752.tar.bz2 |
Issue #20976: pyflakes: Remove unused imports
Diffstat (limited to 'Lib/nntplib.py')
-rw-r--r-- | Lib/nntplib.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/nntplib.py b/Lib/nntplib.py index fcb01d3..e2c6579 100644 --- a/Lib/nntplib.py +++ b/Lib/nntplib.py @@ -1085,7 +1085,6 @@ if _have_ssl: # Test retrieval when run as a script. if __name__ == '__main__': import argparse - from email.utils import parsedate parser = argparse.ArgumentParser(description="""\ nntplib built-in demo - display the latest articles in a newsgroup""") |