New issue 2481: unicodedata does not protect against larger-than-0x10ffff values
https://bitbucket.org/pypy/pypy/issues/2481/unicodedata-does-not-protect-against

Armin Rigo:

You can get nonsense and potential crashes of unicodedata by doing this:

```
#!python

>>>> u = array.array('u', 'abcd').tounicode()
>>>> u
u'\U64636261'
>>>> u.isspace()
```


_______________________________________________
pypy-issue mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-issue

Reply via email to