summaryrefslogtreecommitdiffstats
path: root/Lib/pdb.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Add "print" command to pdb, "print s" previously invoked the print statement.Georg Brandl2007-09-041-1/+3
* Kill execfile(), use exec() insteadNeal Norwitz2007-08-121-1/+6
* Use input(), not our own fake raw input (in one place).Guido van Rossum2007-05-271-6/+1
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-151-4/+3
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-13/+59
* Change all the function attributes from func_* -> __*__. This gets ridNeal Norwitz2007-02-251-4/+4
* Fix a bogus end=' ' here.Guido van Rossum2007-02-091-1/+1
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-132/+130
* Merged revisions 53451-53537 via svnmerge fromThomas Wouters2007-02-011-2/+12
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-2/+2
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-1/+1
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-1/+1
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-1/+2