diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-08-12 17:29:24 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-08-12 17:29:24 (GMT) |
commit | b833fa88d339e9d8bbfe2f9a16567e50348202d2 (patch) | |
tree | e395bc05b5d833991a4aea8ade023203a78e52dd /Lib/socket.py | |
parent | 13bc24b4a4f14d3f63acdd6ffe57c926ef3777d1 (diff) | |
download | cpython-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.py | 2 |
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) |