commit | 9e6bf1a8ee8ea9d7b187763c92cd500bc614fc64 | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Mon Jul 09 21:07:41 2012 +0200 |
committer | Martin v. Löwis <martin@v.loewis.de> | Mon Jul 09 21:07:41 2012 +0200 |
tree | 57616cda14d8fd5a31c3d5cca5648f9b45a54c1f | |
parent | e8e4e1456c8c168b5d1b5065280a50b3b5cf394f [diff] [blame] |
Widen test to support unicode.
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index 14f062e..3e23e6c 100644 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py
@@ -1265,7 +1265,7 @@ 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)