summaryrefslogtreecommitdiff
path: root/Lib/pdb.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #16180: Exit pdb if file has syntax error, instead of trapping userTerry Jan Reedy2015-09-051-0/+3
* #18705: fix a number of typos. Patch by Févry Thibault.Ezio Melotti2013-08-171-1/+1
* PDB now will properly escape backslashes in the names of modules it executes....Jason R. Coombs2011-11-171-1/+1
* Merged revisions 83259,83261,83264-83265,83268-83269,83271-83272,83281 via sv...Georg Brandl2010-08-011-8/+19
* Revert r83267, as it breaks a few doctests and generally leads to ugly trunca...Georg Brandl2010-07-301-2/+2
* #7539: use _saferepr() for printing exceptions from pdb.Georg Brandl2010-07-301-2/+2
* Revert r81012. buildbot problems and its questionable of me to evenGregory P. Smith2010-05-091-39/+5
* Fixes [issue7245] Better Ctrl-C support in pdb.Gregory P. Smith2010-05-081-5/+39
* Make the pdb displayhook compatible with the standard displayhook: do not pri...Georg Brandl2009-09-161-1/+3
* Fix overlong lines.Georg Brandl2009-05-051-17/+27
* #5142: add module skipping feature to pdb.Georg Brandl2009-05-051-2/+2
* Actually the displayhook should print the repr.Georg Brandl2009-04-021-1/+1
* Fix test_doctest, missed two assignments to curframe.Georg Brandl2009-04-021-0/+2
* Cache the f_locals dict of the current frame, since every access to frame.f_l...Georg Brandl2009-04-011-14/+21
* In Pdb, stop assigning values to __builtin__._ which interferes with the one ...Georg Brandl2009-04-011-0/+9
* Revert accidental checkin.Georg Brandl2009-04-011-6/+0
* Add NEWS item.Georg Brandl2009-04-011-0/+6
* Fix several issues relating to access to source code inside zipfiles. Initial...Nick Coghlan2008-12-141-2/+2
* fix #4150: pdb's up command didn't work for generators in post-mortemBenjamin Peterson2008-10-221-6/+2
* Remove use of tuple unpacking and dict.has_key() so as to silenceBrett Cannon2008-08-011-1/+2
* Revert the renaming of repr to reprlib.Brett Cannon2008-05-231-1/+1
* Changed references to the reprlib module to use its new name.Alexandre Vassalotti2008-05-161-1/+1
* Add the "until" command to pdbBenjamin Peterson2008-05-111-0/+13
* Added help options to PDBBenjamin Peterson2008-03-261-1/+1
* Issue 1106316. post_mortem()'s parameter, traceback, is nowFacundo Batista2008-03-081-1/+10
* test_doctest fails since r59984.Amaury Forgeot d'Arc2008-01-151-0/+2
* Issue #1786 (by myself): pdb should use its own stdin/stdout around anGuido van Rossum2008-01-151-2/+8
* Whitespace normalization. Ugh, we really need to do this more often.Neal Norwitz2007-04-251-3/+3
* Patch #1429539: pdb now correctly initializes the __main__ module forGeorg Brandl2007-03-131-9/+16
* Patch #1393667: pdb now has a "run" command which restarts the debuggedGeorg Brandl2007-03-131-3/+32
* Patch #1192590: Fix pdb's "ignore" and "condition" commands so they trap the ...Collin Winter2007-03-111-2/+10
* Add missing "return" statements in exception handler.Georg Brandl2007-03-111-0/+2
* Bug #1627316: handle error in condition/ignore pdb commands more gracefully.Georg Brandl2007-01-221-2/+12
* [Bug #1526834] Fix crash in pdb when you do 'b f(';Andrew M. Kuchling2006-09-051-1/+1
* Whitespace normalization.Tim Peters2006-07-271-1/+1
* Reformat docstring; fix typoAndrew M. Kuchling2006-07-271-1/+2
* Patch #721464: pdb.Pdb instances can now be given explicit stdin andGeorg Brandl2006-05-101-95/+98
* Bug #1472191: convert breakpoint indices to ints before comparing them to intsGeorg Brandl2006-05-031-1/+7
* Reindent.Martin v. Löwis2006-04-171-7/+7
* Remove bogus character.Martin v. Löwis2006-04-171-1/+1
* Patch #790710: Add breakpoint command lists in pdb.Martin v. Löwis2006-04-171-1/+124
* bug [ 1192315 ] 'clear -1' in pdbGeorg Brandl2005-08-241-1/+4
* Bug #1055168: calling pdb.set_trace() calls Bdb.set_trace, which madeJohannes Gijsbers2004-11-071-1/+1
* SF bug #1052503: pdb runcall should accept keyword argumentsRaymond Hettinger2004-10-241-2/+2
* Whitespace normalization.Tim Peters2004-10-121-5/+4
* Improvements when running pdb as a script.Johannes Gijsbers2004-10-121-16/+81
* Patch #1003640: replace checkline() function parsing with new breakpoint logic:Johannes Gijsbers2004-08-301-41/+10
* bug #989672: pdb.doc and the help messages for the help_d and help_u methodsJohannes Gijsbers2004-08-141-2/+2
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-8/+8
* Whitespace normalization.Tim Peters2003-06-151-1/+1