[issue1724822] provide a shlex.split alternative for Windows shell syntax

2019-10-08 Thread Eli Schwartz
Change by Eli Schwartz : -- nosy: +eschwartz ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue1724822] provide a shlex.split alternative for Windows shell syntax

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue1724822] provide a shlex.split alternative for Windows shell syntax

2011-07-27 Thread Éric Araujo
Éric Araujo added the comment: > But surely it's not named "POSIX mode" for no reason. It's because > those rules resemble those of the UNIX shell. While "non-POSIX mode" > resemble those of non-POSIX shells, such as DOS. Not exactly: when it comes to parsing, shells on POSIX systems don’t alwa

[issue1724822] provide a shlex.split alternative for Windows shell syntax

2011-03-05 Thread Philip Jenvey
Philip Jenvey added the comment: The code I linked to above implements those semantics in pure Python. It follows Microsoft's "Parsing C Command-Line Arguments" rules like CommandLineToArgvW does Here's updated links, the older links seemed to have broken: https://fisheye3.atlassian.com/brow

[issue1724822] provide a shlex.split alternative for Windows shell syntax

2010-09-17 Thread Eric Smith
Eric Smith added the comment: Now that I think about this some more, we wouldn't want to call this API. I'd rather this hypothetical function be available on non-Windows platforms, so we'd have to implement the semantics of CommandLineToArgvW or whichever CRT we decide to match. --

[issue1724822] provide a shlex.split alternative for Windows shell syntax

2010-09-17 Thread Eric Smith
Eric Smith added the comment: Raymond Chen's blog today discusses CommandLineToArgvW, which is apparently an API that can parse command lines. It's not clear to me if this is actually called by the MSFT CRT: http://blogs.msdn.com/b/oldnewthing/archive/2010/09/17/10063629.aspx Here's the docum

[issue1724822] provide a shlex.split alternative for Windows shell syntax

2010-09-17 Thread R. David Murray
R. David Murray added the comment: No, this feature request has not been satisfied. Georg fixed some subsidiary issues, but they did not in fact address the feature request for an shlex.split equivalent for Windows. Since no one has expressed interest in working on this, even though model co

[issue1724822] provide a shlex.split alternative for Windows shell syntax

2010-09-17 Thread Mark Lawrence
Mark Lawrence added the comment: Already fixed by r55549 and r0. -- nosy: +BreamoreBoy resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue1724822] provide a shlex.split alternative for Windows shell syntax

2010-05-28 Thread Eric Smith
Changes by Eric Smith : -- nosy: +eric.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue1724822] provide a shlex.split alternative for Windows shell syntax

2009-10-09 Thread Philip Jenvey
Philip Jenvey added the comment: FYI I've implemented a Windows command line parser for use by subprocess on Jython, it's available here: http://fisheye3.atlassian.com/browse/jython/trunk/jython/Lib/subprocess. py?r=6636#l554 tests: http://fisheye3.atlassian.com/browse/jython/trunk/jython/Li

[issue1724822] provide a shlex.split alternative for Windows shell syntax

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- assignee: -> georg.brandl components: +Documentation stage: -> test needed versions: +Python 2.7 ___ Python tracker ___ _