summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2006-08-08 17:37:00 (GMT)
committerThomas Heller <theller@ctypes.org>2006-08-08 17:37:00 (GMT)
commitab1049c0462e760b2568ed050e62d094320481fa (patch)
tree4880dac27cc589e5f7dc52cfda05ce8202946663 /Misc
parentb0061c8e93aadc0d7e0c07734e04f056a8bcb8bb (diff)
downloadcpython-ab1049c0462e760b2568ed050e62d094320481fa.zip
cpython-ab1049c0462e760b2568ed050e62d094320481fa.tar.gz
cpython-ab1049c0462e760b2568ed050e62d094320481fa.tar.bz2
memcmp() can return values other than -1, 0, and +1 but tp_compare
must not.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 04549b9..24b1645 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 2.5 release candidate 1?
Core and builtins
-----------------
+- Bug #1536786: buffer comparison could emit a RuntimeWarning.
+
- Bug #1535165: fixed a segfault in input() and raw_input() when
sys.stdin is closed.