Tagged Questions
0
votes
1answer
16 views
Temporarily entering the debugger in IPython
In IPython, with %pdb enabled, I can hit Ctrl-C and be dropped to a Python debugger console at the exact point I stopped the program.
However, at this point the program is entirely stopped, and I ...
0
votes
0answers
43 views
Use IPython magic functions in ipdb shell
I want to use IPython magic functions like %paste, %cd in ipdb shell. Is is possible and how?
1
vote
2answers
50 views
Opening an IPython shell on any (uncatched) exception
I have defined the following (embedded) shell in Python:
from IPython.config.loader import Config
cfg = Config()
prompt_config = cfg.PromptManager
prompt_config.in_template = 'N.In <\\#>: '
...
0
votes
1answer
27 views
debugging ipython after pep8 returns nothing but I still have a syntax error
After receiving the needed help from phihag on my previous post, I noticed that I didn't have result for all even numbers. However, I keep receiving a syntax error at line 47 invalid syntax with else.
...
0
votes
1answer
49 views
debugging invalid syntax error iPython
I am greeted with the following syntax error after I execute the program thanks thkang from this post
You entered: ./#
Expanded to: ./#
=================
File "./largestoddxyz.py", line 43
...
0
votes
4answers
65 views
Debugging with breakpoints from console in Python
I'm trying to migrate from Matlab to python. One of the things that is nice about Matlab is that when debugging I can put a breakpoint in some code and do something to call that code form the command ...
0
votes
1answer
135 views
Get IPython tab completion for ipdb
I have IPython(0.13.1) and ipdb(0.7) installed, I inserted the line import ipdb;ipdb.set_trace() in my script and ran python my_script.py. Now I am in the ipdb prompt and there is some autocompletion ...
1
vote
3answers
176 views
Breakpoint-induced interactive debugging of Python with IPython
Say I have an IPython session, from which I call some script:
> run my_script.py
Is there a way to induce a breakpoint in my_script.py from which I can inspect my workspace from IPython?
I ...
0
votes
2answers
828 views
IPYTHON IDE for Windows
I recently installed IPYTHON after hearing about it on this forum. I am looking for an environment that is similar to what might come with MATLAB or RStudio for R. I was under the impression that ...
0
votes
1answer
83 views
Access to class members within ipdb
Maybe this question will look simple but I'm trying to look at some member variables from within ipdb and I cannot see how.
Example:
class MyClass( object ):
def __init__( self, p ):
...
1
vote
1answer
331 views
Stepping into a function in IPython
Is there a way to step into the first line of a function in ipython. I imagine something that would look like:
%step foo(1, 2)
which runs ipdb and sets a breakpoint at the first line of foo.
If I ...
2
votes
2answers
126 views
IPython jump to error in vi / Vim?
When using Vim to develop C code, it's possible to run :make then :cp to jump directly to compiler errors in the code.
I wonder if there is any similar functionality when using IPython with Vim as ...
1
vote
1answer
184 views
Debugging C/C++ code with IPython
Say I am in IPython (e.g. on the new QT console), and that I call a C++ library that I wrote from it (e.g. using SWIG or Boost.Python). I would like to set a breakpoint in my C++ code and have the ...
4
votes
1answer
265 views
Is it possible to run commands in IPython with debugging?
Here are my actions in IPython:
> import my_module
> import ipdb
Now, my module lacks any executable code, it only declares classes. So I want to make a statement:
> g = my_module.Graph()
...
1
vote
3answers
165 views
Is it possible to know if you are in ipython or not?
i.e. can you do something like:
if we_are_in_ipython:
do_some_ipython_specific_stuff()
normal_python_stuff()
I guess what I'm trying to do is very loosely along the lines of #if DEBUG in C# ...
1
vote
1answer
81 views
Python: how to control namespace after an unhandled exception?
Is there any way to control which namespace you end up in after an unhandled exception?
For example, if I'm at an ipython prompt and I go run blah.py on a file with these contents:
def spam():
ham ...
2
votes
2answers
365 views
How can I make ipdb show more lines of context while debugging?
By default, during debugging in IPython, ipdb shows one line above and one line below the current position in code.
Is there an easy way to make the area shown a bit bigger? I'd think it would be ...
0
votes
1answer
685 views
Launch ipython shell from python script that uses command line option parsing
I've been looking around for quite some time to find a way to optimally do this but haven't been successful. My problem setting is as follows:
I want to be able to launch an ipython shell for ...
4
votes
1answer
198 views
Transfer Ipython namespace to ipdb
I am in the middle of an ipython session. I've loaded a module foo which contains a function foo.bar. While working, I notice that foo.bar gives some weird output when I feed it some input x, where x ...
5
votes
6answers
2k views
Launch an ipython shell on exception
Is there a way to launch an ipython shell or prompt when my program runs a line that raises an exception?
I'm mostly interested in the context, variables, in the scope (and subscopes) where the ...
3
votes
1answer
415 views
How to programmatically exit pdb started in eval() or exec() without showing output
In my python code I have this line:
try:
result = eval(command, self.globals, self.locals)
except SyntaxError:
exec(command, self.globals, self.locals)
The command variable can be any ...
8
votes
7answers
4k views
A Python IDE with Debugging and iPython Integration?
Does anyone know of a python IDE that has iPython as the interpreter?
Using the standard interpreter just drives me nuts, as I've just grown to love using iPython and all the features it provides. ...
2
votes
2answers
1k views
cannot override sys.excepthook
I try to customize behavior of sys.excepthook as described by the recipe.
in ipython:
:import pdb, sys, traceback
:def info(type, value, tb):
: traceback.print_exception(type, value, tb)
: ...
25
votes
10answers
5k views
Is it possible to go into ipython from code?
For my debugging needs,pdb is pretty good. However, it would be MUCH cooler ( and helpful ) if I could go into ipython. Is this thing possible?
0
votes
2answers
209 views
Is it possible to pass a variable out of a pdb session into the original interactive session?
I am using pdb to examine a script having called run -d in an ipython session.
It would be useful to be able to plot some of the variables but I need them in the main ipython environment in order to ...