commit | dd96ca3d6b7e6091ccaea56044139ffe7228712c | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Thu May 24 17:33:33 2007 +0000 |
committer | Georg Brandl <georg@python.org> | Thu May 24 17:33:33 2007 +0000 |
tree | c676cbcd1fbfd17d904f65d241cfbed55acf2216 | |
parent | c90bc7599441632a0b6d0b9bfc92563fe7e19104 [diff] |
Fix parameter passing.
diff --git a/Lib/shlex.py b/Lib/shlex.py index fa18bb9..e7c8acc 100644 --- a/Lib/shlex.py +++ b/Lib/shlex.py
@@ -272,7 +272,7 @@ 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 = ''