[pywin32-checkins] pywin32/com/win32comext/axdebug adb.py, 1.6.2.1, 1.6.2.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-12-04 05:04:37
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/axdebug In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27395/com/win32comext/axdebug Modified Files: Tag: py3k adb.py Log Message: update to py3k syntax Index: adb.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/axdebug/adb.py,v retrieving revision 1.6.2.1 retrieving revision 1.6.2.2 diff -C2 -d -r1.6.2.1 -r1.6.2.2 *** adb.py 26 Nov 2008 09:03:29 -0000 1.6.2.1 --- adb.py 4 Dec 2008 05:04:32 -0000 1.6.2.2 *************** *** 4,8 **** from win32com.server.util import unwrap import win32com.client.connect ! import gateways import sys, bdb, traceback import axdebug, stackframe --- 4,8 ---- from win32com.server.util import unwrap import win32com.client.connect ! from . import gateways import sys, bdb, traceback import axdebug, stackframe *************** *** 87,91 **** def __xxxxx__set_break(self, filename, lineno, cond = None): # As per standard one, except no linecache checking! ! if not self.breaks.has_key(filename): self.breaks[filename] = [] list = self.breaks[filename] --- 87,91 ---- def __xxxxx__set_break(self, filename, lineno, cond = None): # As per standard one, except no linecache checking! ! if filename not in self.breaks: self.breaks[filename] = [] list = self.breaks[filename] |