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

I ran a debug server in PyCharm and then executed the following script: ```import pydevd import threading import time class Thread(threading.Thread): def run(self): while True: time.sleep(0.1) thread = Thread() thread.start()...

_Note - I hope this feature place is on pdevd and not one of its clients. as I am not sure on the functionalities "border" between them._ Suppose I have...

Hi, I manage to connect to the debugger from a remote Jython script (running in localhost). i can step over the python calls, but at some point the script resumes...

sys.exit function allow string argument, so [do_exit()](https://github.com/fabioz/PyDev.Debugger/blob/master/pydevconsole.py#L247) function throw TypeError if we use string.

It seems most time is used at saxutils.escape and urllib.quote, so, ideally we could have a cythonized version which does both at a single pass. On the matter: Falcon has...

PyDev adds a thread when running unit tests. This thread may cause a problem, which is described in [this SO question](http://stackoverflow.com/questions/13724653/pydev-pyunit-issue-when-using-thread-join-to-ensure-all-threads-are-joined). I confirm that the workaround described therein works well....

The default SimpleXMLRPCServer uses ipv4 socket. So PyCharm starts remote interpreter via ssh but cann`t connect to it. As temporary solution for PyCharm I have used a following crutch: ```...

def iter_frames(self, t): #sys._current_frames(): dictionary with thread id -> topmost frame current_frames = sys._current_frames() v = current_frames.get(t.ident) if v is not None: return [v] return []

Linking the [StackOverflow post](http://stackoverflow.com/questions/41108931/module-trace-has-no-attribute-modname-while-trying-to-debug-in-pycharm-pyth/41373236#41373236) which initially caught this problem. The problem is that if the PyCharm debugger would be started with `--save-signatures` ("Collect run-time types information for code insight" Python...

Hi, I"m trying to activate the remote debugger. I tried with python 2.7.2 and also with python 2.6.5. the trace that I get is the following: Traceback (most recent call...