summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2010-11-05 17:23:41 (GMT)
committerDavid Malcolm <dmalcolm@redhat.com>2010-11-05 17:23:41 (GMT)
commit9696088b6d04efe179a825f05060ea3c96a625eb (patch)
treec2a1adbbcb491fb073fc31bc13fb7b4af31cf651 /Misc
parentde11b189d1e771053fa3e662b2b08116998a73bc (diff)
downloadcpython-9696088b6d04efe179a825f05060ea3c96a625eb.zip
cpython-9696088b6d04efe179a825f05060ea3c96a625eb.tar.gz
cpython-9696088b6d04efe179a825f05060ea3c96a625eb.tar.bz2
Issue #10288: The deprecated family of "char"-handling macros
(ISLOWER()/ISUPPER()/etc) have now been removed: use Py_ISLOWER() etc instead.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index de5d573..1910651 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -252,6 +252,10 @@ Extensions
C-API
-----
+- Issue #10288: The deprecated family of "char"-handling macros
+ (ISLOWER()/ISUPPER()/etc) have now been removed: use Py_ISLOWER() etc
+ instead.
+
- Issue #9778: Hash values are now always the size of pointers. A new Py_hash_t
type has been introduced.