You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
venv/PyCharm 2025.2.1.1/plugins/python-ce/helpers/pydev/pydevd_pycharm.py

12 lines
247 B

# 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',
]