Skip to content

Commit 069fbfa

Browse files
committed
Remove PipeConnection.__init__()
Address Serhiy's review.
1 parent 4c82464 commit 069fbfa

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Lib/multiprocessing/connection.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -273,10 +273,7 @@ class PipeConnection(_ConnectionBase):
273273
with FILE_FLAG_OVERLAPPED.
274274
"""
275275
_got_empty_message = False
276-
277-
def __init__(self, *args, **kwargs):
278-
super().__init__(*args, **kwargs)
279-
self._send_ov = None
276+
_send_ov = None
280277

281278
def _close(self, _CloseHandle=_winapi.CloseHandle):
282279
ov = self._send_ov

0 commit comments

Comments
 (0)