- May 24, 2018
-
-
Andreas Klöckner authored
-
- Apr 10, 2018
-
-
Andreas Klöckner authored
Show variables that start with an underscore in the var view
-
Aaron Meurer authored
We still filter things that start and end with __, to filter out things like __builtins__, __file__, and so on. It also removes the filtering of variables that start with ., which is only possible if something puts that in globals() manually. Fixes #292.
-
- Mar 13, 2018
-
-
Aaron Meurer authored
Improve some text width calculations
-
- Dec 29, 2017
-
-
Andreas Klöckner authored
Show length of array types in var view
-
Ales Raszka authored
The new code shows length of set, frozenset, list, tuple and dict type varibles in variable view.
-
- Dec 16, 2017
-
-
Andreas Klöckner authored
-
- Nov 27, 2017
-
-
Andreas Klöckner authored
set socket REUSEADDR opt for the remote debugger
-
Shuai Lin authored
-
- Nov 07, 2017
-
-
Andreas Klöckner authored
update Go-to-Line UI with File/Current Line/Go to Line
-
Al Danial authored
-
- Nov 06, 2017
-
-
Al Danial authored
-
- Oct 29, 2017
-
-
Andreas Klöckner authored
-
Andreas Klöckner authored
-
- Oct 15, 2017
-
-
Andreas Klöckner authored
check 'safely_stringify_for_pudb' on the type #276
-
Ofer Koren authored
The hasattr call should check for 'safely_stringify_for_pudb' on the type of the object instead of the object itself, so as not to implicitly call its __getattr__ (if implemented). This will avoid the exceptions on such magic objects.
-
- Sep 03, 2017
-
-
Aaron Meurer authored
Fixes the issue in the comment https://github.com/inducer/pudb/issues/271#issuecomment-326776945. I don't know if it also fixes the issue itself.
-
Aaron Meurer authored
I am unsure if it really needs to be used for the variable name itself (can variable names be double-width characters?), but I suppose it can't hurt.
-
Aaron Meurer authored
-
Andreas Klöckner authored
Don't return early when "returning" from a module
-
Aaron Meurer authored
We still need to run interaction so that the debugger will show the result of the last line that was run. We just don't want it to treat the end of the module as a "return". For instance, if you have a file with a single variable definition a = 1 then if you stop on the definition, pudb will show the variable "a: 1" in the variables view (but it won't show "return: None" after stepping again). Fixes https://github.com/inducer/pudb/pull/264#issuecomment-326777042.
-
- Sep 02, 2017
-
-
Andreas Klöckner authored
-
Andreas Klöckner authored
-
Andreas Klöckner authored
Check whether output from obj.safely_stringify_for_pudb() is actually a string, so as to not be confused by Mock objects (closes #270 on github)
-
- Aug 30, 2017
-
-
Andreas Klöckner authored
Fix keyword arg error
-
- Aug 29, 2017
-
-
Alok Singh authored
-
- Aug 27, 2017
-
-
Andreas Klöckner authored
fix lint errors
-
Alok Singh authored
-
Andreas Klöckner authored
Add ptipython
-
Alok Singh authored
-
Alok Singh authored
-
- Aug 24, 2017
-
-
Aaron Meurer authored
Don't show "Return: None" when "returning" from a module frame
-
Aaron Meurer authored
That is, when the last line of a module file is executed (usually from runscript).
-
- Aug 13, 2017
-
-
Andreas Klöckner authored
-
Andreas Klöckner authored
-
- Jul 05, 2017
-
-
Andreas Klöckner authored
Use urwid's calc_width in make_canvas
-
Aaron Meurer authored
-
Aaron Meurer authored
This does the right thing for double-width and zero-width Unicode characters. Fixes #232.
-
- Jun 25, 2017
-
-
Andreas Klöckner authored
Tell ptpython to read/process the user's config file.
-
John Sivak authored
-