summaryrefslogtreecommitdiffstats
path: root/Lib/shlex.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-05-03 18:14:16 (GMT)
committerGuido van Rossum <guido@python.org>1999-05-03 18:14:16 (GMT)
commit73898c7b159f898cffff1c5cfc529a10a38e0011 (patch)
tree5288583fde1a9b68376137812b286a683eb6ba17 /Lib/shlex.py
parent96d80f984a4df67ef90fc367faff6836b6f0496e (diff)
downloadcpython-73898c7b159f898cffff1c5cfc529a10a38e0011.zip
cpython-73898c7b159f898cffff1c5cfc529a10a38e0011.tar.gz
cpython-73898c7b159f898cffff1c5cfc529a10a38e0011.tar.bz2
No need to import os or string. (Andrew Dalke & kjpylint)
Diffstat (limited to 'Lib/shlex.py')
-rw-r--r--Lib/shlex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/shlex.py b/Lib/shlex.py
index 5b6a0ca..6eba4c8 100644
--- a/Lib/shlex.py
+++ b/Lib/shlex.py
@@ -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."