Message110828
On Mon, Jul 19, 2010 at 4:33 PM, Éric Araujo <report@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. |
|
Date |
User |
Action |
Args |
2010-07-19 22:50:45 | belopolsky | set | recipients:
+ belopolsky, astrand, mark.dickinson, eric.araujo |
2010-07-19 22:50:43 | belopolsky | link | issue9308 messages |
2010-07-19 22:50:42 | belopolsky | create | |
|