summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-04-03 22:48:51 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-04-03 22:48:51 (GMT)
commit4ceeeb09d8ff445888b24aa324bc06175d141cb9 (patch)
treecdc10ef5b26e95ea8397ed57b88b36bfec6d88ab /Misc
parentab8b9cae7e2f1e714b35d8e5cdadca4df52290d5 (diff)
downloadcpython-4ceeeb09d8ff445888b24aa324bc06175d141cb9.zip
cpython-4ceeeb09d8ff445888b24aa324bc06175d141cb9.tar.gz
cpython-4ceeeb09d8ff445888b24aa324bc06175d141cb9.tar.bz2
ensure that the locale does not affect the tokenization of identifiers
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5001145..af1dd20 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 2.7 beta 1?
Core and Builtins
-----------------
+- Ensure that tokenization of identifiers is not affected by locale.
+
- Issue #1222585: Added LDCXXSHARED for C++ support. Patch by Arfrever.
- Raise a TypeError when trying to delete a T_STRING_INPLACE struct member.