summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-08-22 22:05:20 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-08-22 22:05:20 (GMT)
commit20443f30436cd93b491286a596063a9ede832467 (patch)
tree465fc9c9cff4dfdce3bfa25364b6f380f91d4d34 /Misc
parentb6f9806bd6d5495271e14029acc1e8f1e7de97bc (diff)
downloadcpython-20443f30436cd93b491286a596063a9ede832467.zip
cpython-20443f30436cd93b491286a596063a9ede832467.tar.gz
cpython-20443f30436cd93b491286a596063a9ede832467.tar.bz2
#3650: fix a reference leak in bytes.split('x')
Actually the same as r65785, but trunk only has bytearray.
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 89ffdc1..3173fcb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 3.0 release candidate 1
Core and Builtins
-----------------
+- Issue #3650: Fixed a reference leak in bytes.split('x').
+
Library
-------