diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-08-02 06:14:22 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-08-02 06:14:22 (GMT) |
commit | c5e060dee65a03ca2401487315d6c45dead09fe1 (patch) | |
tree | 6e511f92022cb278324a4a2fb2b581988eed3939 /Misc | |
parent | 5fb9c20f2a6c76279e16420255758855d6d98432 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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(). |