summaryrefslogtreecommitdiff
path: root/Lib/pdb.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-1/+1
* Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-5/+5
* Merge issue #13120: Allow to call pdb.set_trace() from thread.Andrew Svetlov2012-12-041-0/+95
|\
| * Close #14210: add command argument completion to pdb: complete file names, gl...Georg Brandl2012-03-101-0/+95
* | Issue #13120: Allow to call pdb.set_trace() from thread.Andrew Svetlov2012-12-041-2/+9
|/
* Add display/undisplay pdb commands.Georg Brandl2010-12-041-2/+66
* #7245: Add a SIGINT handler on continue in pdb that allows to break a program...Georg Brandl2010-12-041-5/+32
* Add the "interact" pdb command from pdb++.Georg Brandl2010-12-041-4/+15
* Use booleans where applicable.Georg Brandl2010-11-291-10/+10
* Remove the comment used while testing.Senthil Kumaran2010-11-291-1/+0
* Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number.Senthil Kumaran2010-11-291-1/+2
* Remove unused imports.Georg Brandl2010-10-141-3/+1
* #9964: fix pdb failure to import under -OO. Warn the user that help is simply...Georg Brandl2010-10-141-15/+20
* Use a context manager for some file objects.Florent Xicluna2010-09-031-10/+4
* Part of #7245: when KeyboardInterrupt is raised while defining commands, rest...Georg Brandl2010-07-301-1/+20
* Show the traceback line numbers as well as the current line numbers if an exc...Georg Brandl2010-07-301-20/+48
* Fix source finding if the given frame is a module-level frame.Georg Brandl2010-07-301-2/+11
* Add "longlist" and "source" commands, ideas borrowed from pdb++ by Antonio Cuni.Georg Brandl2010-07-301-17/+58
* Several enhancements to pdb and its test suite.Georg Brandl2010-07-301-566/+359
* #809887: improve pdb feedback for breakpoint-related actions. Also add a fun...Georg Brandl2010-07-301-71/+46
* #6719: In pdb, do not stop somewhere in the encodings machinery if the source...Georg Brandl2010-07-301-0/+4
* #8015: fix crash when entering an empty line for breakpoint commands. Also r...Georg Brandl2010-07-301-5/+9
* Document the "jump" command in pdb.__doc__, and add a version tag for "until X".Georg Brandl2010-07-301-0/+10
* Allow giving an explicit line number to "until".Georg Brandl2010-07-301-8/+23
* #1437051: allow "continue"/"next"/etc. in .pdbrc, also add pdb -c option to g...Georg Brandl2010-07-301-18/+55
* #9230: allow Pdb.checkline() to be called without a current frame, for settin...Georg Brandl2010-07-301-2/+5
* #4179: In pdb, allow "list ." as a command to return to the currently debugge...Georg Brandl2010-07-301-2/+3
* pydoc.pager does not promise to use $PAGER.Georg Brandl2010-07-191-1/+1
* #9279: remove the pdb.doc file, put its contents in pdb.__doc__. Also sync t...Georg Brandl2010-07-181-13/+215
* #9064: accept number of frames for "up" and "down" commands in pdb.Georg Brandl2010-06-271-10/+28
* convert shebang lines: python -> python3Benjamin Peterson2010-03-111-1/+1
* Merged revisions 74838-74839 via svnmerge fromGeorg Brandl2009-09-161-1/+3
* #6888 fix the alias command with no argumentsBenjamin Peterson2009-09-111-2/+1
* #6126: fix pdb stepping and breakpoints by giving the executed code the corre...Georg Brandl2009-08-131-2/+3
* #6323: pdb doesn't deal well with SyntaxErrors.Amaury Forgeot d'Arc2009-07-091-1/+1
* Merged revisions 72324 via svnmerge fromGeorg Brandl2009-05-051-14/+24
* Merged revisions 72322 via svnmerge fromGeorg Brandl2009-05-051-2/+2
* Merged revisions 70712,70714,70764-70765,70769-70771,70773,70776-70777,70788-...Benjamin Peterson2009-04-051-15/+32
* Merged revisions 67750-67751 via svnmerge fromNick Coghlan2008-12-141-2/+2
* Merged revisions 66974,66977,66984,66989,66992,66994-66996,66998-67000,67007,...Benjamin Peterson2008-10-251-6/+2
* Rename the repr module to reprlib.Alexandre Vassalotti2008-05-161-1/+1
* Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,...Alexandre Vassalotti2008-05-161-0/+13
* Convert a lot of print statements to print functions in docstrings,Neal Norwitz2008-05-131-2/+4
* Merged revisions 61913,61915-61916,61918-61919,61922-61926,61928-61929,61931,...Christian Heimes2008-03-261-1/+1
* Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,...Christian Heimes2008-03-161-1/+10
* Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge fromChristian Heimes2008-01-181-0/+2
* Merged revisions 59952-59984 via svnmerge fromGuido van Rossum2008-01-151-2/+8
* Remove several mentions of old Python versions that don't apply anymore.Georg Brandl2008-01-051-6/+1
* Removed the API to create unbound methods and simplified the API for bound me...Christian Heimes2007-11-271-3/+3
* Repair a bad translation of the exec statement.Georg Brandl2007-09-121-6/+2