From: Georg Brandl Date: Thu, 24 May 2007 17:33:33 +0000 (+0000) Subject: Fix parameter passing. X-Git-Tag: v2.6a1~1699 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dd96ca3d6b7e6091ccaea56044139ffe7228712c;p=thirdparty%2FPython%2Fcpython.git Fix parameter passing. --- diff --git a/Lib/shlex.py b/Lib/shlex.py index fa18bb95e47c..e7c8accd4275 100644 --- a/Lib/shlex.py +++ b/Lib/shlex.py @@ -272,7 +272,7 @@ class shlex: return token def split(s, comments=False, posix=True): - lex = shlex(s, posix) + lex = shlex(s, posix=posix) lex.whitespace_split = True if not comments: lex.commenters = ''