[issue2280] parser module chokes on unusual characters

2008-07-12 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- resolution: -> out of date status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue2280] parser module chokes on unusual characters

2008-07-11 Thread David Binger
David Binger <[EMAIL PROTECTED]> added the comment: On Jul 11, 2008, at 5:35 PM, Kuba Fast wrote: > I get no problem in 3.0b1. Should this be closed? I think so. It looks like this has been fixed. Thanks. ___ Python tracker <[EMAIL PROTECTED]>

[issue2280] parser module chokes on unusual characters

2008-07-11 Thread Kuba Fast
Kuba Fast <[EMAIL PROTECTED]> added the comment: I get no problem in 3.0b1. Should this be closed? >>> parser.suite('"\u1234"') -- nosy: +kfast ___ Python tracker <[EMAIL PROTECTED]> ___

[issue2280] parser module chokes on unusual characters

2008-03-12 Thread David Binger
New submission from David Binger <[EMAIL PROTECTED]>: This is with the current revision of py3k: 61353. parser.suite('"\u1234"') fails with a TypeError. Changing the argument format from "s" to "s#" works around this problem. I added a unit test for this. After fixing the "s#", another bug is