summaryrefslogtreecommitdiffstats
path: root/Lib/poplib.py
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2023-06-28 11:55:41 (GMT)
committerGitHub <noreply@github.com>2023-06-28 11:55:41 (GMT)
commitd830c4a944bcdcc8fe729a60f438fc762965eec1 (patch)
treeff7b86825a4cffc756788e4e8e6540544cb1008d /Lib/poplib.py
parent6c60684bf5d34fae27a2f6a142ff794b38cefe1b (diff)
downloadcpython-d830c4a944bcdcc8fe729a60f438fc762965eec1.zip
cpython-d830c4a944bcdcc8fe729a60f438fc762965eec1.tar.gz
cpython-d830c4a944bcdcc8fe729a60f438fc762965eec1.tar.bz2
gh-106200: Remove unused imports (#106201)
Diffstat (limited to 'Lib/poplib.py')
-rw-r--r--Lib/poplib.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/poplib.py b/Lib/poplib.py
index 9a5ef03..1a1629d 100644
--- a/Lib/poplib.py
+++ b/Lib/poplib.py
@@ -451,7 +451,6 @@ if HAVE_SSL:
__all__.append("POP3_SSL")
if __name__ == "__main__":
- import sys
a = POP3(sys.argv[1])
print(a.getwelcome())
a.user(sys.argv[2])