summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/python_abstractbase_runme3.py
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/python/python_abstractbase_runme3.py')
-rw-r--r--Examples/test-suite/python/python_abstractbase_runme3.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Examples/test-suite/python/python_abstractbase_runme3.py b/Examples/test-suite/python/python_abstractbase_runme3.py
index 94dee3ff7..9b189964d 100644
--- a/Examples/test-suite/python/python_abstractbase_runme3.py
+++ b/Examples/test-suite/python/python_abstractbase_runme3.py
@@ -3,6 +3,8 @@ from collections import *
# This is expected to fail with -builtin option
# Builtin types can't inherit from pure-python abstract bases
+if is_python_builtin():
+ exit(0)
assert issubclass(Mapii, MutableMapping)
assert issubclass(Multimapii, MutableMapping)