Index: shlex.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/shlex.py,v retrieving revision 1.21 diff -c -r1.21 shlex.py *** shlex.py 20 Apr 2003 01:57:02 -0000 1.21 --- shlex.py 23 May 2003 12:44:06 -0000 *************** *** 10,19 **** import os.path import sys ! try: ! from cStringIO import StringIO ! except ImportError: ! from StringIO import StringIO __all__ = ["shlex", "split"] --- 10,16 ---- import os.path import sys ! from StringIO import StringIO __all__ = ["shlex", "split"]