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 ekorn
Recipients ekorn, meador.inge, r.david.murray
Date 2011-12-08.23:17:06
SpamBayes Score 1.9650564e-05
Marked as misclassified No
Message-id <1323386227.84.0.701604048477.issue13543@psf.upfronthosting.co.za>
In-reply-to
Content
FYI, Min RK commented on the IPython issue:
https://github.com/ipython/ipython/issues/1109#issuecomment-3071470

In short, 
shlex.shlex('blob f(" ")', posix=False)
fails, whereas 
shlex.shlex('blob f( " ")', posix=False)

"The problem appears to be that Python source obviously doesn't sit well with non-posix whitespace-split shlex. [...] if you lead all your open-quotes with whitespace, you should be fine (works for all given examples, at least). [...] I have no idea whether this is a Python bug or not, since I don't know what the reference standard is, but this is definitely an IPython bug.  We should not be trying to use shlex to parse Python code as if it were command-line arguments."
History
Date User Action Args
2011-12-08 23:17:07ekornsetrecipients: + ekorn, r.david.murray, meador.inge
2011-12-08 23:17:07ekornsetmessageid: <1323386227.84.0.701604048477.issue13543@psf.upfronthosting.co.za>
2011-12-08 23:17:07ekornlinkissue13543 messages
2011-12-08 23:17:06ekorncreate