58 """ |
58 """ |
59 Class implementing base class of the debugger. |
59 Class implementing base class of the debugger. |
60 |
60 |
61 Provides methods for the 'owning' client to call to step etc. |
61 Provides methods for the 'owning' client to call to step etc. |
62 """ |
62 """ |
63 # Don't thrust distutils.sysconfig.get_python_lib: possible case mismatch |
|
64 # on Windows |
|
65 lib = os.path.dirname(inspect.__file__) |
63 lib = os.path.dirname(inspect.__file__) |
66 # tuple required because it's accessed a lot of times by startswith method |
64 # tuple required because it's accessed a lot of times by startswith method |
67 pathsToSkip = ('<', os.path.dirname(__file__), inspect.__file__[:-1]) |
65 pathsToSkip = ('<', os.path.dirname(__file__), inspect.__file__[:-1]) |
68 filesToSkip = {} |
66 filesToSkip = {} |
69 |
67 |