Files
openide/python/helpers/pydev/pydevd_pycharm.py
Andrey Lisin c05ea7c662 PY-60597 Add public API functions to __all__
GitOrigin-RevId: 943d414d52a4199bd28ad0317a658e18290bc297
2024-06-21 13:48:34 +00:00

12 lines
247 B
Python

# make settrace() and stoptrace() functions available for `pydevd_pycharm`
from pydevd import settrace, stoptrace
from _pydevd_bundle.pydevd_comm import VERSION_STRING
__version__ = VERSION_STRING
__all__ = [
'settrace',
'stoptrace',
]