diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-10-29 06:15:13 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-10-29 06:15:13 (GMT) |
commit | 669ff66c326a0e5e0bed0619b691725f76ac3d04 (patch) | |
tree | dd640e983e89bb38fe1cda9c5af9e8c6d009d86f /Lib | |
parent | f8152c67f52874cd4aa63f1cb3e1216382f98057 (diff) | |
download | cpython-669ff66c326a0e5e0bed0619b691725f76ac3d04.zip cpython-669ff66c326a0e5e0bed0619b691725f76ac3d04.tar.gz cpython-669ff66c326a0e5e0bed0619b691725f76ac3d04.tar.bz2 |
remove duplicated imports (closes #25502)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/getpass.py | 2 | ||||
-rw-r--r-- | Lib/pickletools.py | 2 | ||||
-rwxr-xr-x | Lib/smtplib.py | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/Lib/getpass.py b/Lib/getpass.py index 7c4e976..be51121 100644 --- a/Lib/getpass.py +++ b/Lib/getpass.py @@ -99,7 +99,7 @@ def win_getpass(prompt='Password: ', stream=None): """Prompt for password with echo off, using Windows getch().""" if sys.stdin is not sys.__stdin__: return fallback_getpass(prompt, stream) - import msvcrt + for c in prompt: msvcrt.putwch(c) pw = "" diff --git a/Lib/pickletools.py b/Lib/pickletools.py index cf5df41..155bd5b 100644 --- a/Lib/pickletools.py +++ b/Lib/pickletools.py @@ -2793,7 +2793,7 @@ def _test(): return doctest.testmod() if __name__ == "__main__": - import sys, argparse + import argparse parser = argparse.ArgumentParser( description='disassemble one or more pickle files') parser.add_argument( diff --git a/Lib/smtplib.py b/Lib/smtplib.py index 4fe6aaf..7e34875 100755 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -1080,8 +1080,6 @@ class LMTP(SMTP): # Test the sendmail method, which tests most of the others. # Note: This always sends to localhost. if __name__ == '__main__': - import sys - def prompt(prompt): sys.stdout.write(prompt + ": ") sys.stdout.flush() |