commit | 78ce6b10ed40d2837f0e51f9af343537cbdef397 | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Tue Dec 24 15:26:42 2002 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Tue Dec 24 15:26:42 2002 +0000 |
tree | 10ac75ec00202263552bc92b2e33f43c166befbe | |
parent | c7d8c68c6512b8c89d5058008763c6cb04797839 [diff] [blame] |
Add test for SF #658106. Will backport.
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index 5a1fcec..0f656c2 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py
@@ -2625,6 +2625,10 @@ cant(Int(), int) cant(True, int) cant(2, bool) + o = object() + cant(o, type(1)) + cant(o, type(None)) + del o def setdict(): if verbose: print "Testing __dict__ assignment..."