From: Victor Stinner Date: Sat, 26 Jul 2014 12:37:57 +0000 (+0200) Subject: (Merge 3.4) Fix repr(_socket.socket) on Windows 64-bit: don't fail with X-Git-Tag: v3.5.0a1~1189 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=011428e168fcbc75c6e2ee3fbaf511bc64f65501;p=python (Merge 3.4) Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError on closed socket. repr(socket.socket) already works fine. --- 011428e168fcbc75c6e2ee3fbaf511bc64f65501 diff --cc Misc/NEWS index b120f70fd9,9f7ca1dfcb..c510a1a582 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -108,12 -27,9 +108,15 @@@ Core and Builtin Library ------- + - Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError + on closed socket. repr(socket.socket) already works fine. + +- Issue #22033: Reprs of most Python implemened classes now contain actual + class name instead of hardcoded one. + +- Issue #21947: The dis module can now disassemble generator-iterator + objects based on their gi_code attribute. Patch by Clement Rouault. + - Issue #16133: The asynchat.async_chat.handle_read() method now ignores BlockingIOError exceptions.