mirror of https://github.com/python/cpython
This fixes issue 4332 for Py3k.
This commit is contained in:
parent
a632a75a3e
commit
aae55cbab4
|
@ -614,6 +614,6 @@ if os.name == 'posix':
|
|||
fcntl.fcntl(fd, fcntl.F_SETFL, flags)
|
||||
|
||||
def set_file(self, fd):
|
||||
self._fileno = fd
|
||||
self.socket = file_wrapper(fd)
|
||||
self._fileno = self.socket.fileno()
|
||||
self.add_channel()
|
||||
|
|
Loading…
Reference in New Issue