diff options
author | David Malcolm <dmalcolm@redhat.com> | 2010-11-05 17:23:41 (GMT) |
---|---|---|
committer | David Malcolm <dmalcolm@redhat.com> | 2010-11-05 17:23:41 (GMT) |
commit | 9696088b6d04efe179a825f05060ea3c96a625eb (patch) | |
tree | c2a1adbbcb491fb073fc31bc13fb7b4af31cf651 /Misc | |
parent | de11b189d1e771053fa3e662b2b08116998a73bc (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |