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

### it is similar to the question that NotImplementError while inspecting PyTorch nn model. (https://discuss.pytorch.org/t/notimplementerror-while-inspecting-pytorch-nn-model/69282)

Hello When a subprocess is started inside a debug session of pydevd, the arguments of the subprocess are patched by the `patch_args(argv)` function in `pydev_monkey.py`. In a very special case...

it's ok to execute via pydev run but failed via pydev debug, see: https://github.com/pypa/virtualenv/issues/1423 I think the fix may be restoring old sys.argv after rewritting command line

The `pydevd_thread_wrappers.py` module decorates the `Queue` class. Somewhere in my code I define the `dataBuffer` class that derives from the `Queue` class but when I try to run my script...

Whenever I start PyCharm's debugger, I'm getting an error logged on this line: https://github.com/fabioz/PyDev.Debugger/blob/81197dcd8ae59c29ddf12cd20a084dc3b4dcf750/_pydevd_bundle/pydevd_utils.py#L135 ``` Traceback (most recent call last): File "/Users/me/Library/Application Support/JetBrains/Toolbox/apps/PyCharm-P/ch-1/192.4205.50/PyCharm 2019.2 EAP.app/Contents/helpers/pydev/_pydevd_bundle/pydevd_signature.py", line 97, in create_signature _,...

I'm using pydevd 1.5.1 on the client side and PyDev 7.1.0 on the server side for remote debugging. The path mappings are declared with pydevd_file_utils.setup_client_server_paths in the client script. Tthe...

When the target process is running in a Python environment that does not have pydevd installed, then running attach_pydevd does not work. # Expected behavior Running `pydevd_attach_to_process/attach_pydevd.py` on the same...

Failed to run pydevd v1.4.0 from command line, full error is shown below ``` pydevd --port 20010 --client debug-server --file /opt/to/script warning: Debugger speedups using cython not found. Run '"/usr/bin/python"...

I am trying to attach to python3.7 process ...... pydevd_attach_to_process\attach_pydevd.py" --port 53687 --pid 4140 will fail. However, attaching to Python 3.6.7 has no problem. OS: Windows 10

Hi, I was hoping to write a plugin for pycharm (or maybe a standalone application) which is a custom viewer for an object running inside the pydev debugger through pycharm....