()
| 7 | |
| 8 | |
| 9 | def gen_debug_info(): |
| 10 | from _pydevd_bundle.pydevd_constants import DebugInfoHolder |
| 11 | dct = {} |
| 12 | for name in ( |
| 13 | 'PYDEVD_DEBUG_FILE', |
| 14 | 'DEBUG_TRACE_LEVEL', |
| 15 | ): |
| 16 | dct[name] = getattr(DebugInfoHolder, name) |
| 17 | |
| 18 | return dct |
| 19 | |
| 20 | |
| 21 | if __name__ == "__main__": |
no outgoing calls
no test coverage detected