Aaron Meurer

Results 391 issues of Aaron Meurer

I don't know if this is actually a good idea or not. There may be a better way to achieve what I am after. Say I have a bunch of...

globbing

This has always been an issue for me. Each time I step through a line of code, the screen flashes. If the line takes a long time to complete, all...

Bug

This reverts the changes to the midnight theme that were made in #469 and also cleans it up a little bit. CC @mvanderkamp I don't know if any of the...

Sorry if there is already a way to do this, I didn't see it. If you are stepping through the debugger and an exception is thrown, you the debugger catches...

Bug

With something like ```py def test(): raise ValueError import pudb pudb.set_trace() test() ``` If you step over `test()`, it tells you that an exception has been raised. But with ```py...

Right now it doesn't stop on the line (like t), which would be ideal. I can't figure out how to make it do that. pdb's j does it, so it...

This is based on https://github.com/inducer/pudb/pull/15. I removed commits that were unrelated to mouse support. This still has some TODOs, so don't merge yet, but feel free to test.

[This](https://www.python.org/dev/peps/pep-0553/) was accepted. It adds a `breakpoint()` builtin, and a `sys.breakpointhook` and `PYTHONBREAKPOINT` environment variable to configure it. Obviously we should add support for it.

Say you have ``` py if all(i == j for i, j in zip(range(10), range(10))): print("yes") ``` and you `s`tep into the first line, so that you are inside the...

In the IPython shell, you can't seem to access names from within list comprehensions: ``` py In [16]: a = 1 In [17]: [a for i in range(10)] --------------------------------------------------------------------------- NameError...

Bug