mirror of https://github.com/python/cpython
Widen test to support unicode.
This commit is contained in:
parent
e8e4e1456c
commit
9e6bf1a8ee
|
@ -1265,7 +1265,7 @@ class PseudoFile(object):
|
|||
self.encoding = encoding
|
||||
|
||||
def write(self, s):
|
||||
if not isinstance(s, str):
|
||||
if not isinstance(s, basestring):
|
||||
raise TypeError('must be str, not ' + type(s).__name__)
|
||||
self.shell.write(s, self.tags)
|
||||
|
||||
|
|
|
@ -263,7 +263,7 @@ class _RPCFile(io.TextIOBase):
|
|||
return setattr(self.rpc, name, value)
|
||||
|
||||
def write(self, s):
|
||||
if not isinstance(s, str):
|
||||
if not isinstance(s, basestring):
|
||||
raise TypeError('must be str, not ' + type(s).__name__)
|
||||
return self.rpc.write(s)
|
||||
|
||||
|
|
Loading…
Reference in New Issue