]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
No need to import os or string. (Andrew Dalke & kjpylint)
authorGuido van Rossum <guido@python.org>
Mon, 3 May 1999 18:14:16 +0000 (18:14 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 3 May 1999 18:14:16 +0000 (18:14 +0000)
Lib/shlex.py

index 5b6a0ca27ea7a1d4189801a8d481fbeb2590be86..6eba4c87770818db1beb416193f12b8f162d2a5b 100644 (file)
@@ -1,6 +1,6 @@
 # Module and documentation by Eric S. Raymond, 21 Dec 1998 
 
-import sys, os, string
+import sys
 
 class shlex:
     "A lexical analyzer class for simple shell-like syntaxes."