summaryrefslogtreecommitdiffstats
path: root/Lib/socket.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-08-12 17:29:24 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-08-12 17:29:24 (GMT)
commitb833fa88d339e9d8bbfe2f9a16567e50348202d2 (patch)
treee395bc05b5d833991a4aea8ade023203a78e52dd /Lib/socket.py
parent13bc24b4a4f14d3f63acdd6ffe57c926ef3777d1 (diff)
downloadcpython-b833fa88d339e9d8bbfe2f9a16567e50348202d2.zip
cpython-b833fa88d339e9d8bbfe2f9a16567e50348202d2.tar.gz
cpython-b833fa88d339e9d8bbfe2f9a16567e50348202d2.tar.bz2
#9543: Fix regression introduced in r83624.
Diffstat (limited to 'Lib/socket.py')
-rw-r--r--Lib/socket.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/socket.py b/Lib/socket.py
index 226eeeb..e4f0a81 100644
--- a/Lib/socket.py
+++ b/Lib/socket.py
@@ -299,7 +299,7 @@ class _fileobject(object):
finally:
if write_offset < data_size:
remainder = data[write_offset:]
- del view, data # explicit free
+ del data # explicit free
self._wbuf.append(remainder)
self._wbuf_len = len(remainder)