summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/li_attribute_runme.py
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2020-08-15 19:03:38 +0100
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2020-08-15 19:03:38 +0100
commitbaec830f75f24cdebfde4103fd3799f1de51bd6c (patch)
tree550c8a6dd5bea1d2595a8db1176b87a46f67e456 /Examples/test-suite/python/li_attribute_runme.py
parentcc94e5168f0853fcb7d95ea04cb93388df7d2b4d (diff)
parentec2b47ef2a4e5c879dde9eac8872db479ac55e74 (diff)
downloadswig-baec830f75f24cdebfde4103fd3799f1de51bd6c.tar.gz
Merge branch 'remove-dependency-on-2to3'
* remove-dependency-on-2to3: Remove need for Python 2to3 Modify examples to be both Python 2 and 3 compatible Remove python3 specific runme3.py test files Convert python tests using 2to3 Convert python test scripts to be Python 2 and 3 compatible Convert swigobject python test to be python 2 and 3 compatible Convert two tests to work with both Python 2 and 3 Improve director_exception Python test Remove further print statements from Python tests Improve Python testing catching exceptions Improve contract Python testcase testing Remove print statements from Python tests
Diffstat (limited to 'Examples/test-suite/python/li_attribute_runme.py')
-rw-r--r--Examples/test-suite/python/li_attribute_runme.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/Examples/test-suite/python/li_attribute_runme.py b/Examples/test-suite/python/li_attribute_runme.py
index 80e793618..a5a6914cd 100644
--- a/Examples/test-suite/python/li_attribute_runme.py
+++ b/Examples/test-suite/python/li_attribute_runme.py
@@ -8,12 +8,10 @@ if aa.a != 1:
raise RuntimeError
aa.a = 3
if aa.a != 3:
- print aa.a
- raise RuntimeError
+ raise RuntimeError("aa.a: {}".format(aa.a))
if aa.b != 2:
- print aa.b
- raise RuntimeError
+ raise RuntimeError("aa.b: {}".format(aa.b))
aa.b = 5
if aa.b != 5:
raise RuntimeError
@@ -77,7 +75,7 @@ if myStringyClass.ReadOnlyString != "changed string":
try:
x = myFoo.does_not_exist
raise RuntimeError
-except AttributeError, e:
+except AttributeError as e:
if str(e).find("does_not_exist") == -1:
raise RuntimeError