mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +00:00
Widen test to support unicode.
This commit is contained in:
parent
e8e4e1456c
commit
9e6bf1a8ee
2 changed files with 2 additions and 2 deletions
|
|
@ -1265,7 +1265,7 @@ class PseudoFile(object):
|
||||||
self.encoding = encoding
|
self.encoding = encoding
|
||||||
|
|
||||||
def write(self, s):
|
def write(self, s):
|
||||||
if not isinstance(s, str):
|
if not isinstance(s, basestring):
|
||||||
raise TypeError('must be str, not ' + type(s).__name__)
|
raise TypeError('must be str, not ' + type(s).__name__)
|
||||||
self.shell.write(s, self.tags)
|
self.shell.write(s, self.tags)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -263,7 +263,7 @@ class _RPCFile(io.TextIOBase):
|
||||||
return setattr(self.rpc, name, value)
|
return setattr(self.rpc, name, value)
|
||||||
|
|
||||||
def write(self, s):
|
def write(self, s):
|
||||||
if not isinstance(s, str):
|
if not isinstance(s, basestring):
|
||||||
raise TypeError('must be str, not ' + type(s).__name__)
|
raise TypeError('must be str, not ' + type(s).__name__)
|
||||||
return self.rpc.write(s)
|
return self.rpc.write(s)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue