summaryrefslogtreecommitdiff
path: root/Lib/bdb.py
Commit message (Expand)AuthorAgeFilesLines
* Have Bdb frame_returning in the finally clauseSenthil Kumaran2012-05-011-3/+5
* issue13183 - Fix pdb skipping frames after hitting a breakpoint and running s...Senthil Kumaran2012-05-011-0/+11
* Merged revisions 86861 via svnmerge fromSenthil Kumaran2010-11-291-5/+9
* Merged revisions 83259,83261,83264-83265,83268-83269,83271-83272,83281 via sv...Georg Brandl2010-08-011-3/+7
* replace has_key with 'in' operatorBenjamin Peterson2009-10-091-2/+2
* #5142: add module skipping feature to pdb.Georg Brandl2009-05-051-1/+12
* 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-0/+2
* Remove use of tuple unpacking and dict.has_key() so as to silenceBrett Cannon2008-08-011-3/+3
* Revert the renaming of repr to reprlib.Brett Cannon2008-05-231-3/+3
* Changed references to the reprlib module to use its new name.Alexandre Vassalotti2008-05-161-3/+3
* Add the "until" command to pdbBenjamin Peterson2008-05-111-16/+17
* #2498 modernized try, except, finally statements in bdbBenjamin Peterson2008-03-281-12/+9
* Patch #721464: pdb.Pdb instances can now be given explicit stdin andGeorg Brandl2006-05-101-7/+9
* Patch #1191700: Adjust column alignment in bdb breakpoint lists.Martin v. Löwis2006-04-151-3/+3
* Bug #1055168: calling pdb.set_trace() calls Bdb.set_trace, which madeJohannes Gijsbers2004-11-071-3/+7
* SF bug #1052503: pdb runcall should accept keyword argumentsRaymond Hettinger2004-10-241-2/+2
* Patch #1003640: replace checkline() function parsing with new breakpoint logic:Johannes Gijsbers2004-08-301-4/+41
* Enable the profiling of C functions (builtins and extensions)Nicholas Bastin2004-03-241-0/+6
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-2/+2
* Get rid of many apply() calls.Guido van Rossum2003-02-271-1/+1
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-9/+9
* Whitespace normalizationNeal Norwitz2002-05-291-2/+2
* This is a Python 2.1 and 2.2 bugfix candidate:Christian Tismer2002-05-281-11/+5
* Convert a pile of obvious "yes/no" functions to return bool.Tim Peters2002-04-041-8/+8
* Use docstrings for exception classesNeal Norwitz2002-03-311-1/+2
* Stop using string exceptionsNeal Norwitz2002-03-311-1/+1
* canonic(): Fix by Edward K Ream to make breakpoints work better onGuido van Rossum2002-02-251-0/+1
* SF #515005, change "1 + ''" (which pychecker warns about being invalid)Neal Norwitz2002-02-111-2/+2
* canonic(): don't use abspath() for filenames looking like <...>; thisGuido van Rossum2001-11-291-0/+2
* Return self.trace_dispatch from dispatch_return() to enable stepping through ...Just van Rossum2001-06-251-0/+1
* Make it clear that a bdb subclass must implement do_clear().Guido van Rossum2001-04-081-0/+3
* String method conversion.Eric S. Raymond2001-02-091-4/+6
* added __all__ lists to a number of Python modulesSkip Montanaro2001-01-201-0/+2
* Whitespace normalization.Tim Peters2001-01-141-44/+44
* Mass patch by Ka-Ping Yee:Guido van Rossum2000-02-021-526/+526
* Change two occurrences of type(x) <> types.CodeType intoGuido van Rossum2000-01-191-2/+2
* canonic(): This used to be equivalent to str() but that caused tooBarry Warsaw1999-09-091-6/+9
* Embarrassing: remove a debug print statement from set_break() for theGuido van Rossum1999-01-291-1/+0
* Support a canonical() method, implementable by a derived class, to beGuido van Rossum1999-01-291-6/+20
* Correct typo in new function get_breaks().Guido van Rossum1999-01-251-1/+1
* Change clear_break() to the old signature clear_break(file, line).Guido van Rossum1999-01-251-26/+40
* Bomb on deleting a temporary breakpoint: there's no methodGuido van Rossum1998-11-181-1/+1
* Don't set a local variable named __args__; this feature no longerGuido van Rossum1998-09-281-1/+1
* Richard Wolff's changes:Guido van Rossum1998-09-111-23/+172
* Use sys.exc_info() where needed.Guido van Rossum1997-09-291-2/+2
* Normalize whitespace.Guido van Rossum1997-07-111-4/+4
* Support for conditional breakpoints (Jim Fulton).Guido van Rossum1997-07-111-4/+16
* Allow code objects to be passed to run() and eval().Guido van Rossum1996-10-151-2/+7
* handle class exceptions; added runeval; made runctx obsoleteGuido van Rossum1995-02-271-7/+30