diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2011-11-04 07:29:17 (GMT) |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2011-11-04 07:29:17 (GMT) |
commit | 54540ec917a47c39328e87b1f4ddf83adeca2f5c (patch) | |
tree | d4cef1dbff88af3933fd0cb4572d272e77a9b9e7 /Lib/pickle.py | |
parent | c53ae589548e37c4bd86f03294a27667978a51f8 (diff) | |
download | cpython-54540ec917a47c39328e87b1f4ddf83adeca2f5c.zip cpython-54540ec917a47c39328e87b1f4ddf83adeca2f5c.tar.gz cpython-54540ec917a47c39328e87b1f4ddf83adeca2f5c.tar.bz2 |
Remove redundant imports.
Diffstat (limited to 'Lib/pickle.py')
-rw-r--r-- | Lib/pickle.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pickle.py b/Lib/pickle.py index f6ff380..a911ca0 100644 --- a/Lib/pickle.py +++ b/Lib/pickle.py @@ -1326,7 +1326,7 @@ def _test(): return doctest.testmod() if __name__ == "__main__": - import sys, argparse + import argparse parser = argparse.ArgumentParser( description='display contents of the pickle files') parser.add_argument( |