summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-08-13 03:17:18 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-08-13 03:17:18 (GMT)
commitf413b80806bb7d077a1611610273dab6d916908d (patch)
tree26430b8d63dd062bc95fc86bfa7cff6f6cded165 /Misc
parent7bf4363f77b9aba82126d092f70aa27f3610bf69 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c9a0522..354d09a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.