summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-02-09 22:14:42 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-02-09 22:14:42 (GMT)
commitc73c561181c3ea3bf15c908a827878e1450a5ac6 (patch)
treef924a60b5c1b5aa172cf3eba2c39605789a7017c /Misc
parent859cd4723f07e2b1da7387f5be0f2ce0a195974d (diff)
parent4de7457009d3dac9c93cc5b471d20a8d5e92ff33 (diff)
downloadcpython-c73c561181c3ea3bf15c908a827878e1450a5ac6.zip
cpython-c73c561181c3ea3bf15c908a827878e1450a5ac6.tar.gz
cpython-c73c561181c3ea3bf15c908a827878e1450a5ac6.tar.bz2
Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter.
I've left a couple of them in: zlib (third-party lib), getaddrinfo.c (doesn't include Python.h, and probably obsolete), _sre.c (legitimate use for the re.LOCALE flag), mpdecimal (needs to build without Python.h).
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 7d3fc94..7dfca91 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.3.1?
Core and Builtins
-----------------
+- Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.)
+ in the interpreter.
+
- Issue #17137: When an Unicode string is resized, the internal wide character
string (wstr) format is now cleared.