Changeset 87 for WingDBG/trunk/WingDBG/ScriptDebugging.py
- Timestamp:
- 07/01/05 17:35:12 (7 years ago)
- Files:
-
- 1 modified
-
WingDBG/trunk/WingDBG/ScriptDebugging.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
WingDBG/trunk/WingDBG/ScriptDebugging.py
r30 r87 15 15 Wingware to support debugging of file system scripts running under Zope''' 16 16 17 # This version number matches the corresponding same-featured 18 # version of Lennart's ScriptDebugging product 19 __version__='1.0.2' 17 __version__='1.0.3' 20 18 21 19 import sys, marshal … … 184 182 185 183 ############################################################################## 184 185 class bad_func_code: 186 co_varnames = () 187 co_argcount = 0 186 188 187 189 try:
