summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-01-04 11:00:45 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-01-04 11:00:45 (GMT)
commitc3a51ecb8518540625034ff07f9d518e0f84e7ac (patch)
tree385ce77578dfe018983aefc822158a04c7709449 /Misc
parent8848c7a37f929b471267bd893f91c3b818fafce0 (diff)
downloadcpython-c3a51ecb8518540625034ff07f9d518e0f84e7ac.zip
cpython-c3a51ecb8518540625034ff07f9d518e0f84e7ac.tar.gz
cpython-c3a51ecb8518540625034ff07f9d518e0f84e7ac.tar.bz2
Issue #10819: SocketIO.name property returns -1 when its closed, instead of
raising a ValueError, to fix repr().
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 1b77950..bebe16b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -30,6 +30,9 @@ Core and Builtins
Library
-------
+- Issue #10819: SocketIO.name property returns -1 when its closed, instead of
+ raising a ValueError, to fix repr().
+
- Issue #8650: zlib.compress() and zlib.decompress() raise an OverflowError if
the input buffer length doesn't fit into an unsigned int (length bigger than
2^32-1 bytes).