Message10092
bytearray uses `Character.is*` methods to do the various bytearray.isxxx methods. This is not compatible with the CPython behaviour; Jython bytearray tests imply latin-1 character encoding, whereas CPython exactly does 7-bit ASCII testing.
CPython 2.7.9:
>>> bytearray('\xc0').isalpha()
False
and Jython:
>>> bytearray('\xc0').isalpha()
True |
|
Date |
User |
Action |
Args |
2015-05-31 11:30:17 | ztane | set | recipients:
+ ztane |
2015-05-31 11:30:16 | ztane | set | messageid: <1433071816.93.0.155169359715.issue2364@psf.upfronthosting.co.za> |
2015-05-31 11:30:16 | ztane | link | issue2364 messages |
2015-05-31 11:30:16 | ztane | create | |
|