| Commit message (Expand) | Author | Age | Files | Lines |
* | Have Bdb frame_returning in the finally clause | Senthil Kumaran | 2012-05-01 | 1 | -3/+5 |
|
|
* | issue13183 - Fix pdb skipping frames after hitting a breakpoint and running s... | Senthil Kumaran | 2012-05-01 | 1 | -0/+11 |
|
|
* | Merged revisions 86861 via svnmerge from | Senthil Kumaran | 2010-11-29 | 1 | -5/+9 |
|
|
* | Merged revisions 83259,83261,83264-83265,83268-83269,83271-83272,83281 via sv... | Georg Brandl | 2010-08-01 | 1 | -3/+7 |
|
|
* | replace has_key with 'in' operator | Benjamin Peterson | 2009-10-09 | 1 | -2/+2 |
|
|
* | #5142: add module skipping feature to pdb. | Georg Brandl | 2009-05-05 | 1 | -1/+12 |
|
|
* | Fix several issues relating to access to source code inside zipfiles. Initial... | Nick Coghlan | 2008-12-14 | 1 | -2/+2 |
|
|
* | fix #4150: pdb's up command didn't work for generators in post-mortem | Benjamin Peterson | 2008-10-22 | 1 | -0/+2 |
|
|
* | Remove use of tuple unpacking and dict.has_key() so as to silence | Brett Cannon | 2008-08-01 | 1 | -3/+3 |
|
|
* | Revert the renaming of repr to reprlib. | Brett Cannon | 2008-05-23 | 1 | -3/+3 |
|
|
* | Changed references to the reprlib module to use its new name. | Alexandre Vassalotti | 2008-05-16 | 1 | -3/+3 |
|
|
* | Add the "until" command to pdb | Benjamin Peterson | 2008-05-11 | 1 | -16/+17 |
|
|
* | #2498 modernized try, except, finally statements in bdb | Benjamin Peterson | 2008-03-28 | 1 | -12/+9 |
|
|
* | Patch #721464: pdb.Pdb instances can now be given explicit stdin and | Georg Brandl | 2006-05-10 | 1 | -7/+9 |
|
|
* | Patch #1191700: Adjust column alignment in bdb breakpoint lists. | Martin v. Löwis | 2006-04-15 | 1 | -3/+3 |
|
|
* | Bug #1055168: calling pdb.set_trace() calls Bdb.set_trace, which made | Johannes Gijsbers | 2004-11-07 | 1 | -3/+7 |
|
|
* | SF bug #1052503: pdb runcall should accept keyword arguments | Raymond Hettinger | 2004-10-24 | 1 | -2/+2 |
|
|
* | Patch #1003640: replace checkline() function parsing with new breakpoint logic: | Johannes Gijsbers | 2004-08-30 | 1 | -4/+41 |
|
|
* | Enable the profiling of C functions (builtins and extensions) | Nicholas Bastin | 2004-03-24 | 1 | -0/+6 |
|
|
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -2/+2 |
|
|
* | Get rid of many apply() calls. | Guido van Rossum | 2003-02-27 | 1 | -1/+1 |
|
|
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -9/+9 |
|
|
* | Whitespace normalization | Neal Norwitz | 2002-05-29 | 1 | -2/+2 |
|
|
* | This is a Python 2.1 and 2.2 bugfix candidate: | Christian Tismer | 2002-05-28 | 1 | -11/+5 |
|
|
* | Convert a pile of obvious "yes/no" functions to return bool. | Tim Peters | 2002-04-04 | 1 | -8/+8 |
|
|
* | Use docstrings for exception classes | Neal Norwitz | 2002-03-31 | 1 | -1/+2 |
|
|
* | Stop using string exceptions | Neal Norwitz | 2002-03-31 | 1 | -1/+1 |
|
|
* | canonic(): Fix by Edward K Ream to make breakpoints work better on | Guido van Rossum | 2002-02-25 | 1 | -0/+1 |
|
|
* | SF #515005, change "1 + ''" (which pychecker warns about being invalid) | Neal Norwitz | 2002-02-11 | 1 | -2/+2 |
|
|
* | canonic(): don't use abspath() for filenames looking like <...>; this | Guido van Rossum | 2001-11-29 | 1 | -0/+2 |
|
|
* | Return self.trace_dispatch from dispatch_return() to enable stepping through ... | Just van Rossum | 2001-06-25 | 1 | -0/+1 |
|
|
* | Make it clear that a bdb subclass must implement do_clear(). | Guido van Rossum | 2001-04-08 | 1 | -0/+3 |
|
|
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -4/+6 |
|
|
* | added __all__ lists to a number of Python modules | Skip Montanaro | 2001-01-20 | 1 | -0/+2 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-01-14 | 1 | -44/+44 |
|
|
* | Mass patch by Ka-Ping Yee: | Guido van Rossum | 2000-02-02 | 1 | -526/+526 |
|
|
* | Change two occurrences of type(x) <> types.CodeType into | Guido van Rossum | 2000-01-19 | 1 | -2/+2 |
|
|
* | canonic(): This used to be equivalent to str() but that caused too | Barry Warsaw | 1999-09-09 | 1 | -6/+9 |
|
|
* | Embarrassing: remove a debug print statement from set_break() for the | Guido van Rossum | 1999-01-29 | 1 | -1/+0 |
|
|
* | Support a canonical() method, implementable by a derived class, to be | Guido van Rossum | 1999-01-29 | 1 | -6/+20 |
|
|
* | Correct typo in new function get_breaks(). | Guido van Rossum | 1999-01-25 | 1 | -1/+1 |
|
|
* | Change clear_break() to the old signature clear_break(file, line). | Guido van Rossum | 1999-01-25 | 1 | -26/+40 |
|
|
* | Bomb on deleting a temporary breakpoint: there's no method | Guido van Rossum | 1998-11-18 | 1 | -1/+1 |
|
|
* | Don't set a local variable named __args__; this feature no longer | Guido van Rossum | 1998-09-28 | 1 | -1/+1 |
|
|
* | Richard Wolff's changes: | Guido van Rossum | 1998-09-11 | 1 | -23/+172 |
|
|
* | Use sys.exc_info() where needed. | Guido van Rossum | 1997-09-29 | 1 | -2/+2 |
|
|
* | Normalize whitespace. | Guido van Rossum | 1997-07-11 | 1 | -4/+4 |
|
|
* | Support for conditional breakpoints (Jim Fulton). | Guido van Rossum | 1997-07-11 | 1 | -4/+16 |
|
|
* | Allow code objects to be passed to run() and eval(). | Guido van Rossum | 1996-10-15 | 1 | -2/+7 |
|
|
* | handle class exceptions; added runeval; made runctx obsolete | Guido van Rossum | 1995-02-27 | 1 | -7/+30 |
|
|