All Questions
96 questions
0
votes
0
answers
36
views
Running a python application inside the Eclipse IDE with the PyDev plugin that requires a pyenv virtual environment
I am trying to execute the Eclipse IDE application with the PyDev plugin in order to develop an application written in Python (called SALT). When you execute the SALT application (outside of Eclipse) ...
0
votes
0
answers
33
views
Meaning of symbol in PyDev debugger window
I am familiarizing myself with Eclipse and the PyDev plugin. I am learning how to debug a very large application with which I am unfamiliar at present. I am able to run a debug session successfully, ...
0
votes
1
answer
51
views
Does PyDev support python async?
The application I am attempting to run under Eclipse/PyDev uses the python async keyword and the asyncio package. Does PyDev support asyncio? I imagine this would affect how stack histories are ...
0
votes
1
answer
67
views
Sending OS.kill(pid, signal.SIGUSR1) to process running in Eclipse
I am trying to use the tactic described in showing-stack-trace-of-running-python-application on a python application running within Eclipse/PyDev. I installed the module described therein (in the file ...
0
votes
0
answers
34
views
PyDev debugger running under Eclipse shows message "suicide_when_without_parent"
I am trying to figure out what happens when the PyDev debugger (running under Eclipse) encounters OS.fork(). This was the subject of another post that has not received any response (Eclipse/PyDev ...
0
votes
0
answers
33
views
Using Eclipse/PyDev to debug programs that use OS.fork()
I am trying to figure out how to debug a python program that uses OS.fork() using Eclipse/PyDev. The basic problem is if I set a breakpoint in code after the fork(), it isn't clear if that breakpoint ...
0
votes
1
answer
74
views
how to get variable starting with double-underscore displayed in eclipse/pydev debug view
In the eclipse/pydev debug view, if a dict object has a key starting with double-underscore, like { "__my_key": , ...}, that key won't show up in the variables view in debug mode; the other ...
6
votes
2
answers
1k
views
How to debug a python script launched by a third party app
I'm using Linux Eclipse (pydev) as IDE to develop python scripts that are launched by an application written in C++. I can debug the python script without problems in the IDE, but the environment is ...
0
votes
1
answer
172
views
How to send a script path in PyDev for debugging instead of inserting settrace in the script?
I'm following a pretty old guide where one could tell PyDev a script path from another application & it would debug it, line by line in eclipse. I like this method, instead of putting settrace() ...
0
votes
2
answers
166
views
Ecplipse, PyDev, Django: Breakpoints in settings.py work, but in views do not
I've embarked on a rather ambitious project in my dev environment because I like keeping up to date I guess. So I've been working on a Django project with Eclipse and PyDev for years and it works ...
0
votes
1
answer
363
views
how to auto-launch debugger in eclipse PyDev on error / exception
Is there a way to start the debugger automatically in Eclipse PyDev on an error or uncaught exception, in order to examine variables? Currently I need to set a breakpoint at the error and re-launch ...
0
votes
1
answer
107
views
Pydev remote debugging "No Module"
I'm working with eclipse pydev-plugin for my python development. I got the remote debugger working and can also run my python script.
However, i cannot run the debugger with my remote modules:
...
0
votes
0
answers
30
views
How to configure pytest in eclipse for single function
In eclipse, i would like to know how to configure debug for single function.
I use pytest interpreter.
In my file 'hello.py', i have several function
How to make this without using console:
pytest ...
0
votes
0
answers
104
views
How to set host on pydevd.py from within eclipse pydev
One can modify the host used to connect the debuger
here:
https://github.com/fabioz/PyDev.Debugger/blob/master/pydevd.py#L2127
But I wonder if there is a 'clean' way to do this using Eclipse UI to ...
0
votes
0
answers
183
views
Python debugging in eclipse stop on outer except block
I have nested exceptions handling in my code, when inner blocks do some stuff before re-raising the exception to upper layers.
Traceback always reports the line number that started the exception ...