This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gjb1002
Recipients
Date 2007-05-24.15:31:43
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
I mean changing shlex.split to accept an optional parameter "posix":

def split(s, comments=False, posix=True):
    lex = shlex(s, posix)
    lex.whitespace_split = True
    if not comments:
        lex.commenters = ''
    return list(lex)
History
Date User Action Args
2007-08-23 16:12:51adminlinkissue1724822 messages
2007-08-23 16:12:51admincreate