New submission from Martin Morrison:

Minimal testcase of the problem situation is tokenising (with posix mode on):

  ''),

Specifically, an empty string, followed by a non-word character, followed by a 
non-space character. In this case, the token buffer is empty and due to a 
missing check for (self.posix and quoted), an extra token is consumed and 
returned in the wrong order:

>>> s = shlex.shlex("'')abc", posix=True)
>>> s.get_token()
'abc'
>>> s.get_token()
')'
>>> s.get_token()
>>> 

I have patches to fix this issue in both default and 2.7. I've also checked 
there are no other occurrences of the same typo.

----------
files: shlex.default.patch
keywords: patch
messages: 223348
nosy: isoschiz
priority: normal
severity: normal
status: open
title: shlex: bug in posix more handling of empty strings
versions: Python 2.7, Python 3.1, Python 3.2, Python 3.3, Python 3.4, Python 3.5
Added file: http://bugs.python.org/file35983/shlex.default.patch

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue21999>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to