Message97340
Shouldn't it work the same as it does for integers?
>>> u'%c' % 0x7f
u'\x7f'
>>> u'%c' % '\x7f'
u'\x7f'
>>> u'%c' % 0x80
u'\x80'
>>> u'%c' % '\x80'
u'\uff80'
That would imply to me it shouldn't be an error, it should just return u'\x80'. |
|
Date |
User |
Action |
Args |
2010-01-07 02:48:38 | eric.smith | set | recipients:
+ eric.smith, doerwalter, vstinner, ezio.melotti |
2010-01-07 02:48:38 | eric.smith | set | messageid: <1262832518.91.0.974797470207.issue7649@psf.upfronthosting.co.za> |
2010-01-07 02:48:37 | eric.smith | link | issue7649 messages |
2010-01-07 02:48:37 | eric.smith | create | |
|