tests/python/python@py_ext/py_ext.xml
changeset 1067 4f460c1dffb5
parent 862 bb59865db6e6
--- a/tests/python/python@py_ext/py_ext.xml	Wed Apr 24 23:53:23 2013 +0200
+++ b/tests/python/python@py_ext/py_ext.xml	Thu Apr 25 11:54:07 2013 +0900
@@ -15,5 +15,21 @@
         res = None
     sys.stdout.flush()
     return res
+
+async_error_test_code = """
+def badaboom():
+    tuple()[0]
+
+import wx
+def badaboomwx():
+    wx.CallAfter(badaboom)
+
+from threading import Timer
+a = Timer(3, badaboom)
+a.start()
+
+b = Timer(6, badaboomwx)
+b.start()
+"""
 ]]>
 </Python>