Update of /cvsroot/pywin32/pywin32/com/win32comext/axdebug
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv4381/com/win32comext/axdebug
Modified Files:
Tag: py3k
debugger.py gateways.py
Log Message:
merge more various changes from the trunk
Index: gateways.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/axdebug/gateways.py,v
retrieving revision 1.3.4.1
retrieving revision 1.3.4.2
diff -C2 -d -r1.3.4.1 -r1.3.4.2
*** gateways.py 26 Nov 2008 09:03:29 -0000 1.3.4.1
--- gateways.py 4 Dec 2008 07:28:46 -0000 1.3.4.2
***************
*** 8,12 ****
import win32com.server.connect
import winerror
- import string
class EnumDebugCodeContexts(ListEnumeratorGateway):
--- 8,11 ----
***************
*** 71,76 ****
"""Provides the functionality of IDebugDocumentProvider, plus a context within a project tree.
"""
! _public_methods_ = string.split("""EnumChildren GetParent SetDocumentProvider
! Close Attach Detach""") + \
DebugDocumentProvider._public_methods_
_com_interfaces_ = [axdebug.IID_IDebugDocumentProvider] + \
--- 70,75 ----
"""Provides the functionality of IDebugDocumentProvider, plus a context within a project tree.
"""
! _public_methods_ = """EnumChildren GetParent SetDocumentProvider
! Close Attach Detach""".split() + \
DebugDocumentProvider._public_methods_
_com_interfaces_ = [axdebug.IID_IDebugDocumentProvider] + \
***************
*** 100,104 ****
"""Event interface for DebugApplicationNode object.
"""
! _public_methods_ = string.split("onAddChild onRemoveChild onDetach")
_com_interfaces_ = [axdebug.IID_IDebugApplicationNodeEvents]
def __init__(self):
--- 99,103 ----
"""Event interface for DebugApplicationNode object.
"""
! _public_methods_ = "onAddChild onRemoveChild onDetach".split()
_com_interfaces_ = [axdebug.IID_IDebugApplicationNodeEvents]
def __init__(self):
***************
*** 204,209 ****
class DebugDocumentTextEvents:
! _public_methods_ = string.split("""onDestroy onInsertText onRemoveText
! onReplaceText onUpdateTextAttributes onUpdateDocumentAttributes""")
_com_interfaces_ = [ axdebug.IID_IDebugDocumentTextEvents ]
def __init__(self):
--- 203,209 ----
class DebugDocumentTextEvents:
! _public_methods_ = """onDestroy onInsertText onRemoveText
! onReplaceText onUpdateTextAttributes
! onUpdateDocumentAttributes""".split()
_com_interfaces_ = [ axdebug.IID_IDebugDocumentTextEvents ]
def __init__(self):
Index: debugger.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/axdebug/debugger.py,v
retrieving revision 1.3.4.1
retrieving revision 1.3.4.2
diff -C2 -d -r1.3.4.1 -r1.3.4.2
*** debugger.py 26 Nov 2008 09:03:29 -0000 1.3.4.1
--- debugger.py 4 Dec 2008 07:28:46 -0000 1.3.4.2
***************
*** 41,45 ****
node = ModuleTreeNode(module)
built_nodes[module] = node
! realNode = apply(create_node_fn, (node,)+create_node_args)
node.realNode = realNode
--- 41,45 ----
node = ModuleTreeNode(module)
built_nodes[module] = node
! realNode = create_node_fn(*(node,)+create_node_args)
node.realNode = realNode
***************
*** 57,61 ****
def RefreshAllModules(builtItems, rootNode, create_node, create_node_args):
! for module in sys.modules.values():
BuildModule(module, builtItems, rootNode, create_node, create_node_args)
--- 57,61 ----
def RefreshAllModules(builtItems, rootNode, create_node, create_node_args):
! for module in list(sys.modules.values()):
BuildModule(module, builtItems, rootNode, create_node, create_node_args)
***************
*** 194,198 ****
def test():
Break()
! raw_input("Waiting...")
dosomething()
print("Done")
--- 194,198 ----
def test():
Break()
! input("Waiting...")
dosomething()
print("Done")
|