| Commit message (Expand) | Author | Age | Files | Lines |
* | Better behavior when stepping over yield[from]. Fixes issue 16596. By Xavier ... | Guido van Rossum | 2013-11-21 | 1 | -5/+31 |
* | issue13183 - Fix pdb skipping frames after hitting a breakpoint and running s... | Senthil Kumaran | 2012-05-01 | 1 | -1/+14 |
* | Issue #10492: bdb.Bdb.run() only traces the execution of the code | Victor Stinner | 2011-01-06 | 1 | -0/+2 |
* | Fix accidental checkin. | Georg Brandl | 2010-12-04 | 1 | -1/+1 |
* | #7245: Add a SIGINT handler on continue in pdb that allows to break a program... | Georg Brandl | 2010-12-04 | 1 | -1/+1 |
* | Use booleans where applicable. | Georg Brandl | 2010-11-29 | 1 | -11/+11 |
* | Code style cleanup in bdb. | Georg Brandl | 2010-11-29 | 1 | -31/+21 |
* | Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number. | Senthil Kumaran | 2010-11-29 | 1 | -5/+9 |
* | Modernize code in effective(). | Georg Brandl | 2010-11-26 | 1 | -21/+15 |
* | Add Breakpoint.bpformat(), which returns the info usually printed by bpprint(... | Georg Brandl | 2010-07-30 | 1 | -9/+14 |
* | #809887: improve pdb feedback for breakpoint-related actions. Also add a fun... | Georg Brandl | 2010-07-30 | 1 | -9/+21 |
* | #5294: Fix the behavior of pdb "continue" command when called in the top-leve... | Georg Brandl | 2010-07-30 | 1 | -3/+7 |
* | #1472251: remove addition of "\n" to code given to pdb.run[eval](), the bug i... | Georg Brandl | 2010-07-30 | 1 | -6/+3 |
* | Allow giving an explicit line number to "until". | Georg Brandl | 2010-07-30 | 1 | -2/+5 |
* | Merged revisions 72322 via svnmerge from | Georg Brandl | 2009-05-05 | 1 | -1/+12 |
* | Merged revisions 67750-67751 via svnmerge from | Nick Coghlan | 2008-12-14 | 1 | -2/+2 |
* | Merged revisions 66974,66977,66984,66989,66992,66994-66996,66998-67000,67007,... | Benjamin Peterson | 2008-10-25 | 1 | -0/+2 |
* | Rename the repr module to reprlib. | Alexandre Vassalotti | 2008-05-16 | 1 | -3/+3 |
* | Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,... | Alexandre Vassalotti | 2008-05-16 | 1 | -16/+17 |
* | Merged revisions 62018 via svnmerge from | Martin v. Löwis | 2008-03-30 | 1 | -12/+9 |
* | Raise statement normalization in Lib/. | Collin Winter | 2007-08-30 | 1 | -1/+1 |
* | Merged revisions 55328-55341 via svnmerge from | Guido van Rossum | 2007-05-15 | 1 | -1/+1 |
* | Fix most trivially-findable print statements. | Guido van Rossum | 2007-02-09 | 1 | -14/+14 |
* | Patch #1550800: make exec a function. | Georg Brandl | 2006-09-06 | 1 | -1/+1 |
* | Get rid of dict.has_key(). Boy this has a lot of repercussions! | Guido van Rossum | 2006-08-18 | 1 | -4/+3 |
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -7/+9 |
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 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 |