Commit 47f1c3d5 authored by Fantix King's avatar Fantix King Committed by Denis Bilenko

subprocess.py: avoid reinitilization of rawlink()

parent 1d735eec
......@@ -307,10 +307,6 @@ class Popen(object):
def poll(self):
return self._internal_poll()
def rawlink(self, callback):
self.result.rawlink(linkproxy(callback, self))
# XXX unlink
if mswindows:
#
# Windows methods
......@@ -524,6 +520,11 @@ class Popen(object):
#
# POSIX methods
#
def rawlink(self, callback):
self.result.rawlink(linkproxy(callback, self))
# XXX unlink
def _get_handles(self, stdin, stdout, stderr):
"""Construct and return tuple with IO objects:
p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment