Alexander Belopolsky <belopol...@users.sourceforge.net> added the comment:

On Mon, Jul 19, 2010 at 4:33 PM, Éric Araujo <rep...@bugs.python.org> wrote:
..
> The shlex fix was reverted IIRC because Mark was unsure of the fix, since our 
> diff tools
> try to be too clever and decode files, not showing us the bytes differences.

Well, it is not clear what wordchars should be in shlex.  I would
think (c in wordchar) should be the same as (c.isalnum() or c == '_'),
but there are only 62 characters added  added in in posix mode:

62

while according to str.isalnum(), three are 71 alphanumeric characters
at code points between 128 and 255:

71

I don't know what POSIX definition of word character is.

----------

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

Reply via email to