[pypy-svn] r60234 - pypy/trunk/pypy/lang/gameboy/debug

cami at codespeak.net cami at codespeak.net
Sun Nov 30 00:27:35 CET 2008


Author: cami
Date: Sun Nov 30 00:27:34 2008
New Revision: 60234

Modified:
   pypy/trunk/pypy/lang/gameboy/debug/debug_rpc_xml_connection.py
Log:
added skip_count argument again

Modified: pypy/trunk/pypy/lang/gameboy/debug/debug_rpc_xml_connection.py
==============================================================================
--- pypy/trunk/pypy/lang/gameboy/debug/debug_rpc_xml_connection.py	(original)
+++ pypy/trunk/pypy/lang/gameboy/debug/debug_rpc_xml_connection.py	Sun Nov 30 00:27:34 2008
@@ -38,11 +38,11 @@
 class DebugRpcXmlConnection(SimpleXMLRPCServer, threading.Thread):
     
     
-    def __init__(self, gameboy_debug, debuggerPort):
+    def __init__(self, gameboy_debug, debuggerPort, skip_count):
         threading.Thread.__init__(self)
         SimpleXMLRPCServer.__init__(self, ("localhost", debuggerPort))
         print "python: DEBUGGER PORT:", debuggerPort
-        self.skip_count            = 0;
+        self.skip_count            = skip_count;
         self.in_between_test      = 1000
         self.debuggerPort         = debuggerPort
         self.gameboy_debug        = gameboy_debug



More information about the Pypy-commit mailing list