From: Guido van Rossum Date: Mon, 3 May 1999 18:14:16 +0000 (+0000) Subject: No need to import os or string. (Andrew Dalke & kjpylint) X-Git-Tag: v1.6a1~1377 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=73898c7b159f898cffff1c5cfc529a10a38e0011;p=thirdparty%2FPython%2Fcpython.git No need to import os or string. (Andrew Dalke & kjpylint) --- diff --git a/Lib/shlex.py b/Lib/shlex.py index 5b6a0ca27ea7..6eba4c877708 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."