PyDev.Debugger icon indicating copy to clipboard operation
PyDev.Debugger copied to clipboard

Sources for the debugger used in PyDev, PyCharm and VSCode Python

Results 102 PyDev.Debugger issues
Sort by recently updated
recently updated
newest added

This is the console output ssh://root@server:2222/usr/local/bin/python2 /root/.pycharm_helpers/pydev/pydevconsole.py 0 0 /usr/local/bin/gunicorn --log-file /var/log/guni.log -c /home/guni.conf prog:app Process finished with exit code -1 Couldn't connect to console process. NAT is set up...

The PyDev interactive console has a nice feature for debugging GUI applications: Even when the debugger is stopped at a breakpoint, your app will continue processing input events. In the...

I use PyCharm, and I have hacked together this bit of code: ``` # This will activate an attached PyCharm or PyDev debugger on a django 500 # error #...

Traceback (most recent call last): File "/Applications/PyCharm.app/Contents/helpers/pydev/pydevd_frame.py", line 331, in trace_dispatch result = plugin_manager.get_breakpoint(main_debugger, self, frame, event, self._args) File "/Applications/PyCharm.app/Contents/helpers/pydev/pydevd_plugins/django_debug.py", line 354, in get_breakpoint pydev_log.debug("Tracing template line: %d\n" % template_line)...

Hi, a [bug](https://github.com/amoffat/sh/issues/162) was reported on my project. It has to do with pydev' monkeypatching exec\* and those new functions expecting py3 strings, not bytes. However, the original exec\* functions...

The code that prevents returning to correct frame is pydevd_frame.py:281 ``` if stop_frame is frame and event in ('return', 'exception') and step_cmd in (CMD_STEP_RETURN, CMD_STEP_OVER): info.pydev_step_cmd = CMD_STEP_INTO info.pydev_step_stop =...

Unlike all other debugger commands. First time by quote_plus in pydevd_comm.py: 1227 (InternalRunCustomOperation), Second time by quote in pydevd_comm.py: 532 (makeMessage)

in vscode, i set `PYDEVD_WARN_EVALUATION_TIMEOUT` to a higher number to suppress warnings, but today i noticed the following warning, mentioning a different but similarly named variable: ``` pydevd warning: Getting...

This problem was not solved, interactive console not working https://github.com/microsoft/debugpy/issues/891 ![bug_pydbg](https://github.com/user-attachments/assets/15112b1d-aa58-4f92-b900-b147bc469960) Not sure how to resolve also case when running debug to prevent switch from interactive console to terminal automatically...

This test has started failing on Debian with both Python 3.11 and Python 3.12 (pydevd version 2.9.6 and 3.1.0) on the assertion `assert 'threading' not in sys.modules` on line 27...