Changeset 277
- Timestamp:
- 08/11/06 11:41:25 (2 years ago)
- Files:
-
- z3wingdbg/trunk/interfaces.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
z3wingdbg/trunk/interfaces.py
r264 r277 10 10 11 11 def startDebugServer(): 12 """Start the debug server""" 12 """Start the debug server 13 14 May throw a DebugServerStartError. 15 16 """ 13 17 14 18 def stopDebugServer(): … … 19 23 20 24 def connectIDE(): 21 """Connect the debug server to the IDE""" 25 """Connect the debug server to the IDE 26 27 May throw a IDEConnectionError. 28 29 """ 22 30 23 31 def disconnectIDE(): … … 32 40 debugger = interface.Attribute('The active debugger, or None') 33 41 42 # Service exceptions 43 class DebugServerStartError(Exception): 44 """The debug server failed to start""" 45 46 class IDEConnectionError(Exception): 47 """The debugger failed to connect to the IDE""" 48 34 49 # The networked debugger 35 50 class INetworkDebugger(interface.Interface): … … 42 57 43 58 def connectClient(): 44 """Establish a connection to client if there isn't one already """59 """Establish a connection to client if there isn't one already.""" 45 60 46 61 def disconnectClient():
