]> granicus.if.org Git - python/commitdiff
No need to import sys or string. (Andrew Dalke & kjpylint)
authorGuido van Rossum <guido@python.org>
Mon, 3 May 1999 18:10:37 +0000 (18:10 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 3 May 1999 18:10:37 +0000 (18:10 +0000)
Lib/netrc.py

index e81f0e7178b90c45d89f97c0a21cdb276faa62e8..9f47babdef9869c49e8f5d2463a535a641deea2f 100644 (file)
@@ -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):