[pypy-svn] r62497 - pypy/trunk/pypy/lang/gameboy

tverwaes at codespeak.net tverwaes at codespeak.net
Tue Mar 3 21:32:28 CET 2009


Author: tverwaes
Date: Tue Mar  3 21:32:27 2009
New Revision: 62497

Modified:
   pypy/trunk/pypy/lang/gameboy/joypad.py
Log:
removing trace call


Modified: pypy/trunk/pypy/lang/gameboy/joypad.py
==============================================================================
--- pypy/trunk/pypy/lang/gameboy/joypad.py	(original)
+++ pypy/trunk/pypy/lang/gameboy/joypad.py	Tue Mar  3 21:32:27 2009
@@ -63,8 +63,6 @@
             self.button_code = self.driver.get_button_code()
         elif control == 2:
             self.button_code = self.driver.get_direction_code()
-            import pdb
-            pdb.set_trace()
         elif control == 3:
             self.button_code = 0xF
         if old_buttons != self.button_code:



More information about the Pypy-commit mailing list