| 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 | -2/+10 |
* | merge with 3.3 | Georg Brandl | 2013-10-14 | 1 | -0/+4 |
|\ |
|
| * | Closes #17154: error out gracefully on "ignore" or "condition" without argument. | Georg Brandl | 2013-10-14 | 1 | -0/+4 |
* | | pdb: modernize find_function() and add tests for it. | Georg Brandl | 2013-10-13 | 1 | -12/+5 |
* | | 18764: remove the problematic 'print' alias for the PDB 'p' command. | R David Murray | 2013-10-10 | 1 | -5/+3 |
* | | #18705: merge with 3.3. | Ezio Melotti | 2013-08-17 | 1 | -2/+2 |
|\ \
| |/ |
|
| * | #18705: fix a number of typos. Patch by FĂ©vry Thibault. | Ezio Melotti | 2013-08-17 | 1 | -2/+2 |
* | | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) | Brett Cannon | 2013-07-04 | 1 | -1/+1 |
* | | Issue #18200: Update the stdlib (except tests) to use | Brett Cannon | 2013-06-13 | 1 | -1/+1 |
* | | Replace IOError with OSError (#16715) | Andrew Svetlov | 2012-12-25 | 1 | -5/+5 |
|/ |
|
* | Merge issue #13120: Allow to call pdb.set_trace() from thread. | Andrew Svetlov | 2012-12-04 | 1 | -2/+9 |
|\ |
|
| * | Issue #13120: Allow to call pdb.set_trace() from thread. | Andrew Svetlov | 2012-12-04 | 1 | -2/+9 |
* | | Close #14210: add command argument completion to pdb: complete file names, gl... | Georg Brandl | 2012-03-10 | 1 | -0/+95 |
|/ |
|
* | Add display/undisplay pdb commands. | Georg Brandl | 2010-12-04 | 1 | -2/+66 |
* | #7245: Add a SIGINT handler on continue in pdb that allows to break a program... | Georg Brandl | 2010-12-04 | 1 | -5/+32 |
* | Add the "interact" pdb command from pdb++. | Georg Brandl | 2010-12-04 | 1 | -4/+15 |
* | Use booleans where applicable. | Georg Brandl | 2010-11-29 | 1 | -10/+10 |
* | Remove the comment used while testing. | Senthil Kumaran | 2010-11-29 | 1 | -1/+0 |
* | Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number. | Senthil Kumaran | 2010-11-29 | 1 | -1/+2 |
* | Remove unused imports. | Georg Brandl | 2010-10-14 | 1 | -3/+1 |
* | #9964: fix pdb failure to import under -OO. Warn the user that help is simply... | Georg Brandl | 2010-10-14 | 1 | -15/+20 |
* | Use a context manager for some file objects. | Florent Xicluna | 2010-09-03 | 1 | -10/+4 |
* | Part of #7245: when KeyboardInterrupt is raised while defining commands, rest... | Georg Brandl | 2010-07-30 | 1 | -1/+20 |
* | Show the traceback line numbers as well as the current line numbers if an exc... | Georg Brandl | 2010-07-30 | 1 | -20/+48 |
* | Fix source finding if the given frame is a module-level frame. | Georg Brandl | 2010-07-30 | 1 | -2/+11 |
* | Add "longlist" and "source" commands, ideas borrowed from pdb++ by Antonio Cuni. | Georg Brandl | 2010-07-30 | 1 | -17/+58 |
* | Several enhancements to pdb and its test suite. | Georg Brandl | 2010-07-30 | 1 | -566/+359 |
* | #809887: improve pdb feedback for breakpoint-related actions. Also add a fun... | Georg Brandl | 2010-07-30 | 1 | -71/+46 |
* | #6719: In pdb, do not stop somewhere in the encodings machinery if the source... | Georg Brandl | 2010-07-30 | 1 | -0/+4 |
* | #8015: fix crash when entering an empty line for breakpoint commands. Also r... | Georg Brandl | 2010-07-30 | 1 | -5/+9 |
* | Document the "jump" command in pdb.__doc__, and add a version tag for "until X". | Georg Brandl | 2010-07-30 | 1 | -0/+10 |
* | Allow giving an explicit line number to "until". | Georg Brandl | 2010-07-30 | 1 | -8/+23 |
* | #1437051: allow "continue"/"next"/etc. in .pdbrc, also add pdb -c option to g... | Georg Brandl | 2010-07-30 | 1 | -18/+55 |
* | #9230: allow Pdb.checkline() to be called without a current frame, for settin... | Georg Brandl | 2010-07-30 | 1 | -2/+5 |
* | #4179: In pdb, allow "list ." as a command to return to the currently debugge... | Georg Brandl | 2010-07-30 | 1 | -2/+3 |
* | pydoc.pager does not promise to use $PAGER. | Georg Brandl | 2010-07-19 | 1 | -1/+1 |
* | #9279: remove the pdb.doc file, put its contents in pdb.__doc__. Also sync t... | Georg Brandl | 2010-07-18 | 1 | -13/+215 |
* | #9064: accept number of frames for "up" and "down" commands in pdb. | Georg Brandl | 2010-06-27 | 1 | -10/+28 |
* | convert shebang lines: python -> python3 | Benjamin Peterson | 2010-03-11 | 1 | -1/+1 |
* | Merged revisions 74838-74839 via svnmerge from | Georg Brandl | 2009-09-16 | 1 | -1/+3 |
* | #6888 fix the alias command with no arguments | Benjamin Peterson | 2009-09-11 | 1 | -2/+1 |
* | #6126: fix pdb stepping and breakpoints by giving the executed code the corre... | Georg Brandl | 2009-08-13 | 1 | -2/+3 |
* | #6323: pdb doesn't deal well with SyntaxErrors. | Amaury Forgeot d'Arc | 2009-07-09 | 1 | -1/+1 |
* | Merged revisions 72324 via svnmerge from | Georg Brandl | 2009-05-05 | 1 | -14/+24 |
* | Merged revisions 72322 via svnmerge from | Georg Brandl | 2009-05-05 | 1 | -2/+2 |
* | Merged revisions 70712,70714,70764-70765,70769-70771,70773,70776-70777,70788-... | Benjamin Peterson | 2009-04-05 | 1 | -15/+32 |
* | 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 | -6/+2 |
* | Rename the repr module to reprlib. | Alexandre Vassalotti | 2008-05-16 | 1 | -1/+1 |
* | Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,... | Alexandre Vassalotti | 2008-05-16 | 1 | -0/+13 |