[pywin32-checkins] pywin32/Pythonwin/pywin/debugger debugger.py, 1.21, 1.22
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-11-26 02:17:48
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/debugger In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14116/pywin/debugger Modified Files: debugger.py Log Message: various py3k syntax modernizations Index: debugger.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/debugger/debugger.py,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** debugger.py 14 Nov 2008 00:22:25 -0000 1.21 --- debugger.py 26 Nov 2008 01:30:11 -0000 1.22 *************** *** 31,38 **** from dbgcon import * ! class DebuggerException(Exception): ! """A Pythonwin debugger exception""" ! ! error = DebuggerException def SetInteractiveContext(globs, locs): --- 31,35 ---- from dbgcon import * ! error = "pywin.debugger.error" def SetInteractiveContext(globs, locs): |