mirror of https://github.com/python/cpython
Use _RPCFile.write properly.
This commit is contained in:
parent
1ba32187c0
commit
3e0cc0f12c
|
@ -259,8 +259,8 @@ class _RPCFile(io.TextIOBase):
|
|||
super.__setattr__(self, 'rpc', rpc)
|
||||
|
||||
def __getattribute__(self, name):
|
||||
# When accessing the 'rpc' attribute, use ours
|
||||
if name == 'rpc':
|
||||
# When accessing the 'rpc' attribute, or 'write', use ours
|
||||
if name in ('rpc', 'write'):
|
||||
return io.TextIOBase.__getattribute__(self, name)
|
||||
# Else only look into the remote object only
|
||||
return getattr(self.rpc, name)
|
||||
|
|
Loading…
Reference in New Issue