summaryrefslogtreecommitdiff
path: root/Lib/pdb.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* [Bug #741171] pdb crashes when enabling a non-existing breakpointAndrew M. Kuchling2003-05-221-2/+22
* Detabified.Guido van Rossum2003-04-091-20/+5
* - New function sys.call_tracing() allows pdb to debug codeGuido van Rossum2003-04-091-0/+33
* Get rid of many apply() calls.Guido van Rossum2003-02-271-1/+1
* I believe this fixesMichael W. Hudson2003-01-311-2/+3
* Duh. The do_EOF() implementation was bogus. Make it more likeGuido van Rossum2003-01-131-3/+5
* This is Richie Hindle's patchMichael W. Hudson2002-12-171-0/+26
* Implement a `pp' command, which is like `p' except that itBarry Warsaw2002-11-051-6/+21
* At Jim Fulton's request, increase the maxstring value of _saferepr toGuido van Rossum2002-09-101-1/+7
* Whitespace normalization.Tim Peters2002-08-231-1/+1
* This is my patchMichael W. Hudson2002-08-151-1/+7
* Fix SF bug 579701 (Fernando Pérez); an input line consisting of one orGuido van Rossum2002-07-121-8/+8
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-6/+6
* Add exit as alias for quit, as the easiest way to address SF bugGuido van Rossum2002-04-151-1/+4
* SF bug #131560: pdb imports 'repr', causing name collisionTim Peters2001-02-091-2/+2
* String method conversion.Eric S. Raymond2001-02-091-35/+33
* a few more __all__ listsSkip Montanaro2001-02-071-0/+3
* I've been using gdb a lot lately -- I'm missing 'bt' as a command inGuido van Rossum2001-01-201-1/+4
* Whitespace normalization.Tim Peters2001-01-151-883/+883
* - Don't hardcode Unix filename syntax when opening ~/.pdbrc.Guido van Rossum2001-01-141-4/+4
* Update the code to better reflect recommended style:Fred Drake2000-12-121-2/+3
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-1/+1
* Sjoerd Mullender:Guido van Rossum2000-03-061-15/+21
* Actually, the previous batch's comment should have been different;Guido van Rossum2000-02-041-1/+1
* More trivial comment -> docstring transformations by Ka-Ping Yee,Guido van Rossum2000-02-041-14/+13
* Sjoerd Mullender writes:Guido van Rossum1999-11-031-0/+3
* Pdb.lineinfo(): Don't use os.popen('egrep ...') to find the line inBarry Warsaw1999-09-091-8/+23
* Get rid of confusing 'global' statement in global code.Guido van Rossum1999-05-031-1/+0
* Improvement of b/w compat note in help text for clear, by Richard Wolff.Guido van Rossum1999-01-281-1/+2
* Get rid of do_clear_break / do_clb command -- it is redundant.Guido van Rossum1999-01-271-20/+0
* Change clear syntax to support three alternatives:Guido van Rossum1999-01-251-3/+47
* When run as a script, don't pass a fake __main__ dictionary; use theGuido van Rossum1998-10-151-1/+1
* Richard Wolff's additional changes; some layout nits, and change theGuido van Rossum1998-09-171-11/+11
* Richard Wolff's changes:Guido van Rossum1998-09-111-59/+351
* Feature added by Harri Pasanen (at my suggestion): .py suffix onGuido van Rossum1998-07-221-3/+10
* Added support for specifying a filename for a breakpoint, roughlyGuido van Rossum1998-07-201-40/+102
* A working version of the 'args' command (it prints the current valuesGuido van Rossum1998-02-251-5/+12
* Use sys.exc_info() where needed.Guido van Rossum1997-09-291-12/+15
* No longer need to use codehack -- use co.co_firstlineno instead.Guido van Rossum1997-07-181-2/+1
* Support for conditional breakpoints (Jim Fulton, with some changes).Guido van Rossum1997-07-111-7/+22
* /usr/local/bin/python -> /usr/bin/env pythonGuido van Rossum1996-11-271-1/+1
* Correct sys.path[0] when used stand-aloneGuido van Rossum1996-09-101-3/+6
* Two changes suggested by Andrew Kuchling:Guido van Rossum1996-07-301-1/+17
* use new "single" compile optionGuido van Rossum1995-08-071-1/+2
* handle class exceptions; added runeval; made runctx obsoleteGuido van Rossum1995-02-271-8/+24
* fix formatting of stack entriesGuido van Rossum1995-02-031-3/+2