summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_b2.py
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2001-07-30 22:49:11 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2001-07-30 22:49:11 (GMT)
commitb7a7731e018283a4ee3dcb65c25175b62691fd34 (patch)
treee9dfd2a2610b030af384826e3745e054b3ad973c /Lib/test/test_b2.py
parent302b54acd91f999c039f9a3618f734dbdfb74467 (diff)
downloadcpython-b7a7731e018283a4ee3dcb65c25175b62691fd34.zip
cpython-b7a7731e018283a4ee3dcb65c25175b62691fd34.tar.gz
cpython-b7a7731e018283a4ee3dcb65c25175b62691fd34.tar.bz2
Add tests for getattr() and hasattr() with non-string args
Diffstat (limited to 'Lib/test/test_b2.py')
-rw-r--r--Lib/test/test_b2.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_b2.py b/Lib/test/test_b2.py
index cfc461c..ae07f5b 100644
--- a/Lib/test/test_b2.py
+++ b/Lib/test/test_b2.py
@@ -205,6 +205,12 @@ print 'setattr'
import sys
setattr(sys, 'spam', 1)
if sys.spam != 1: raise TestFailed, 'setattr(sys, \'spam\', 1)'
+try:
+ setattr(sys, 1, 'spam')
+except TypeError:
+ pass
+else:
+ raise TestFailed, "setattr(sys, 1, 'spam') should raise exception"
print 'str'
if str('') != '': raise TestFailed, 'str(\'\')'