Message80200
The patch works when the unicode contains only ascii, but crashes with
the following input:
>>> def f(hehe): return 42
...
>>> f(**{u'hehe': 1})
42
>>> f(**{u'héhé': 1})
Segmentation fault
The two PyString_AsString(keyword) calls are now wrong and should be
changed. |
|
Date |
User |
Action |
Args |
2009-01-19 18:10:30 | amaury.forgeotdarc | set | recipients:
+ amaury.forgeotdarc, benjamin.peterson |
2009-01-19 18:10:30 | amaury.forgeotdarc | set | messageid: <1232388630.86.0.554377813252.issue4978@psf.upfronthosting.co.za> |
2009-01-19 18:10:30 | amaury.forgeotdarc | link | issue4978 messages |
2009-01-19 18:10:29 | amaury.forgeotdarc | create | |
|