]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/Main.py
New version from Timothy Hochberg
[wxWidgets.git] / wxPython / demo / Main.py
index 990650541e5b3d15cd0eced003f2b54282798534..65201470d4f1eb96b035ae02f16c6c7317e05881 100644 (file)
@@ -20,6 +20,13 @@ import images
 
 ##wx.Trap()
 
+# Use Python's bool constants if available, make aliases if not
+try:
+    True
+except NameError:
+    True = 1==1
+    False = 1==0
+
 #---------------------------------------------------------------------------