summaryrefslogtreecommitdiff
path: root/Examples/python/exceptproxy/runme.py
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/python/exceptproxy/runme.py')
-rw-r--r--Examples/python/exceptproxy/runme.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Examples/python/exceptproxy/runme.py b/Examples/python/exceptproxy/runme.py
index a2ae55584..07e4b0a7f 100644
--- a/Examples/python/exceptproxy/runme.py
+++ b/Examples/python/exceptproxy/runme.py
@@ -1,10 +1,16 @@
# file: runme.py
import example
+if example.is_python_builtin():
+ print "Skipping example: -builtin option does not support %exceptionclass"
+ exit(0)
+
q = example.intQueue(10)
print "Inserting items into intQueue"
+print type(example.FullError)
+
try:
for i in range(0,100):
q.enqueue(i)