diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_descr.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index 51fa0d9f21..1ce08b7fa8 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -2478,6 +2478,11 @@ def setclass(): cant(C(), object) cant(object(), list) cant(list(), object) + class Int(int): __slots__ = [] + cant(2, Int) + cant(Int(), int) + cant(True, int) + cant(2, bool) def setdict(): if verbose: print "Testing __dict__ assignment..." |