summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-01-03 08:21:55 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-01-03 08:21:55 (GMT)
commitf402e922f36a1f5fb5cc8fd87022761c6ee68c20 (patch)
tree21184817f28a38565f5ee87c33fcb0d129a52429 /Misc/NEWS
parent6f84659e5e1dadcf12d1eb54fcd42ab6c42ac420 (diff)
downloadcpython-f402e922f36a1f5fb5cc8fd87022761c6ee68c20.zip
cpython-f402e922f36a1f5fb5cc8fd87022761c6ee68c20.tar.gz
cpython-f402e922f36a1f5fb5cc8fd87022761c6ee68c20.tar.bz2
Issue #16847: Fixed improper use of _PyUnicode_CheckConsistency() in
non-pydebug builds. Several extension modules now compile cleanly when assert()s are enabled in standard builds (-DDEBUG flag).
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e4fd504..41126a6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -4293,6 +4293,10 @@ Tools/Demos
Extension Modules
-----------------
+- Issue #16847: Fixed improper use of _PyUnicode_CheckConsistency() in
+ non-pydebug builds. Several extension modules now compile cleanly when
+ assert()s are enabled in standard builds (-DDEBUG flag).
+
- Issue #13840: The error message produced by ctypes.create_string_buffer
when given a Unicode string has been fixed.