summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-05-03 18:10:37 (GMT)
committerGuido van Rossum <guido@python.org>1999-05-03 18:10:37 (GMT)
commit1e1cfa3a1c126f5cfaa3527f8edf588ad8690b04 (patch)
tree0aa1080b85679962226e43a22faae5dfc5e348fa
parent1cc2b9de35a2af2fdfe0bc707b51aae0e64b8160 (diff)
downloadcpython-1e1cfa3a1c126f5cfaa3527f8edf588ad8690b04.zip
cpython-1e1cfa3a1c126f5cfaa3527f8edf588ad8690b04.tar.gz
cpython-1e1cfa3a1c126f5cfaa3527f8edf588ad8690b04.tar.bz2
No need to import sys or string. (Andrew Dalke & kjpylint)
-rw-r--r--Lib/netrc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/netrc.py b/Lib/netrc.py
index e81f0e7..9f47bab 100644
--- a/Lib/netrc.py
+++ b/Lib/netrc.py
@@ -1,6 +1,6 @@
# Module and documentation by Eric S. Raymond, 21 Dec 1998
-import sys, os, string, shlex
+import os, shlex
class netrc:
def __init__(self, file=None):