summaryrefslogtreecommitdiffstats
path: root/Lib/socket.py
diff options
context:
space:
mode:
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)