commit | 84fc66dd020931c14be8b13fcbdb9a8f295141c9 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Thu May 03 17:18:26 2007 +0000 |
committer | Guido van Rossum <guido@python.org> | Thu May 03 17:18:26 2007 +0000 |
tree | 989d036b1f6f9297d475a166179ec92ff3c7aad9 | |
parent | ef87d6ed94780fe00250a551031023aeb2898365 [diff] [blame] |
Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. Change all occurrences of unichr to chr.
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index 2132b8d..4ae8f60 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py
@@ -1122,7 +1122,7 @@ # this used to leak references try: class C(object): - __slots__ = [unichr(128)] + __slots__ = [chr(128)] except (TypeError, UnicodeEncodeError): pass else: