summaryrefslogtreecommitdiff
path: root/Lib/bdb.py
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-36492: Fix passing special keyword arguments to some functions. (GH...Serhiy Storchaka2019-04-011-1/+13
* bpo-34906: Doc: Fix typos (GH-9712)Miss Islington (bot)2018-10-051-1/+1
* Docs: fix some wrong words (GH-6987)Miss Islington (bot)2018-06-021-1/+1
* bpo-32650 Add support for async generators and more test for coroutines in pd...Pablo Galindo2018-01-281-6/+8
* bpo-32650: Add native coroutine support to bdb when stepping over line (GH-5400)Pablo Galindo2018-01-291-6/+6
* bpo-30211: bdb: add docstrings (#1350)csabella2017-05-161-18/+212
* bpo-29762: More use "raise from None". (#569)Serhiy Storchaka2017-04-051-2/+2
* Better behavior when stepping over yield[from]. Fixes issue 16596. By Xavier ...Guido van Rossum2013-11-211-5/+31
* issue13183 - Fix pdb skipping frames after hitting a breakpoint and running s...Senthil Kumaran2012-05-011-1/+14
* Issue #10492: bdb.Bdb.run() only traces the execution of the codeVictor Stinner2011-01-061-0/+2
* Fix accidental checkin.Georg Brandl2010-12-041-1/+1
* #7245: Add a SIGINT handler on continue in pdb that allows to break a program...Georg Brandl2010-12-041-1/+1
* Use booleans where applicable.Georg Brandl2010-11-291-11/+11
* Code style cleanup in bdb.Georg Brandl2010-11-291-31/+21
* Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number.Senthil Kumaran2010-11-291-5/+9
* Modernize code in effective().Georg Brandl2010-11-261-21/+15
* Add Breakpoint.bpformat(), which returns the info usually printed by bpprint(...Georg Brandl2010-07-301-9/+14
* #809887: improve pdb feedback for breakpoint-related actions. Also add a fun...Georg Brandl2010-07-301-9/+21
* #5294: Fix the behavior of pdb "continue" command when called in the top-leve...Georg Brandl2010-07-301-3/+7
* #1472251: remove addition of "\n" to code given to pdb.run[eval](), the bug i...Georg Brandl2010-07-301-6/+3
* Allow giving an explicit line number to "until".Georg Brandl2010-07-301-2/+5
* Merged revisions 72322 via svnmerge fromGeorg Brandl2009-05-051-1/+12
* 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-0/+2
* Rename the repr module to reprlib.Alexandre Vassalotti2008-05-161-3/+3
* Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,...Alexandre Vassalotti2008-05-161-16/+17
* Merged revisions 62018 via svnmerge fromMartin v. Löwis2008-03-301-12/+9
* Raise statement normalization in Lib/.Collin Winter2007-08-301-1/+1
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-151-1/+1
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-14/+14
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-1/+1
* Get rid of dict.has_key(). Boy this has a lot of repercussions!Guido van Rossum2006-08-181-4/+3
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-7/+9
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-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