Issue1502
Created on 2009-11-12.16:11:42 by gz, last changed 2009-11-12.16:11:42 by gz.
| msg5307 (view) |
Author: Martin (gz) |
Date: 2009-11-12.16:11:41 |
|
The 'string-escape' codec (and its unicode cousin) do not escape the
escape character, thus fail to roundtrip.
Jython 2.5.1 (Release_2_5_1:6813, Sep 26 2009, 13:47:54)
[Java HotSpot(TM) Client VM (Sun Microsystems Inc.)] on java1.6.0_16
Type "help", "copyright", "credits" or "license" for more information.
>>> "\\x00".encode("string-escape")
'\\x00'
>>> _.decode("string-escape")
'\x00'
One of the issues reported on jython-dev last week pertaining to
running bazaar on jython.
|
|
| Date |
User |
Action |
Args |
| 2009-11-12 16:11:42 | gz | create | |
|