summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_descr.py
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2007-06-11 14:55:19 (GMT)
committerWalter Dörwald <walter@livinglogic.de>2007-06-11 14:55:19 (GMT)
commit7815c5e91e22a7f6dfb6b64357d25982f91ea46e (patch)
tree93ebaccba41b91f58ec27a0b0f29a949f31b677f /Lib/test/test_descr.py
parent4dbd01b43506ead947f774bcfdddf52219f862f0 (diff)
downloadcpython-7815c5e91e22a7f6dfb6b64357d25982f91ea46e.zip
cpython-7815c5e91e22a7f6dfb6b64357d25982f91ea46e.tar.gz
cpython-7815c5e91e22a7f6dfb6b64357d25982f91ea46e.tar.bz2
Check unicode identifier directly instead of converting
it to an 8bit string first.
Diffstat (limited to 'Lib/test/test_descr.py')
-rw-r--r--Lib/test/test_descr.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index f20f676..fca0061 100644
--- a/Lib/test/test_descr.py
+++ b/Lib/test/test_descr.py
@@ -1085,6 +1085,13 @@ def slots():
raise TestFailed, "['foo\\0bar'] slots not caught"
try:
class C(object):
+ __slots__ = ["foo\u1234bar"]
+ except TypeError:
+ pass
+ else:
+ raise TestFailed, "['foo\\u1234bar'] slots not caught"
+ try:
+ class C(object):
__slots__ = ["1"]
except TypeError:
pass