X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d14a1e28567de23c586bc80017073d0c39f8d18f..c5985061df331bb84d63d26dfd7793e65df86650:/wxPython/wx/py/interpreter.py

diff --git a/wxPython/wx/py/interpreter.py b/wxPython/wx/py/interpreter.py
index 426b0b966f..fe95d5e80b 100644
--- a/wxPython/wx/py/interpreter.py
+++ b/wxPython/wx/py/interpreter.py
@@ -10,12 +10,6 @@ from code import InteractiveInterpreter
 import dispatcher
 import introspect
 
-try:
-    True
-except NameError:
-    True = 1==1
-    False = 1==0
-
 
 class Interpreter(InteractiveInterpreter):
     """Interpreter based on code.InteractiveInterpreter."""