diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-08-13 03:17:18 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-08-13 03:17:18 (GMT) |
commit | f413b80806bb7d077a1611610273dab6d916908d (patch) | |
tree | 26430b8d63dd062bc95fc86bfa7cff6f6cded165 /Misc | |
parent | 7bf4363f77b9aba82126d092f70aa27f3610bf69 (diff) | |
download | cpython-f413b80806bb7d077a1611610273dab6d916908d.zip cpython-f413b80806bb7d077a1611610273dab6d916908d.tar.gz cpython-f413b80806bb7d077a1611610273dab6d916908d.tar.bz2 |
in narrow builds, make sure to test codepoints as identifier characters (closes #12732)
This fixes the use of Unicode identifiers outside the BMP in narrow builds.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.2.2? Core and Builtins ----------------- +- Issue #12732: In narrow unicode builds, allow Unicode identifiers which fall + outside the BMP. + - Issue #11603: Fix a crash when __str__ is rebound as __repr__. Patch by Andreas Stührk. |