summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-08-02 06:14:22 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-08-02 06:14:22 (GMT)
commitc5e060dee65a03ca2401487315d6c45dead09fe1 (patch)
tree6e511f92022cb278324a4a2fb2b581988eed3939 /Misc
parent5fb9c20f2a6c76279e16420255758855d6d98432 (diff)
downloadcpython-c5e060dee65a03ca2401487315d6c45dead09fe1.zip
cpython-c5e060dee65a03ca2401487315d6c45dead09fe1.tar.gz
cpython-c5e060dee65a03ca2401487315d6c45dead09fe1.tar.bz2
_PyWeakref_GetWeakrefCount() now returns a Py_ssize_t instead of long.
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 f2a318e..81f7ca4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.5 beta 3?
Core and builtins
-----------------
+- _PyWeakref_GetWeakrefCount() now returns a Py_ssize_t, it previously
+ returned a long (see PEP 353).
+
- Bug #1515471: string.replace() accepts character buffers again.
- Add PyErr_WarnEx() so C code can pass the stacklevel to warnings.warn().