summaryrefslogtreecommitdiff
path: root/Lib/pdb.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-36969: Make PDB args command display keyword only arguments (GH-13452)Miss Islington (bot)2019-05-201-3/+3
* [3.7] bpo-35931: Gracefully handle any exception in pdb debug command (GH-121...Miss Islington (bot)2019-03-111-7/+5
* bpo-35931: Gracefully handle SyntaxError in pdb debug command (GH-11782)Miss Islington (bot)2019-02-151-1/+7
* [3.7] bpo-32691: Use mod_spec.parent when running modules with pdb (GH-5510)Miss Islington (bot)2018-02-041-1/+1
* bpo-32206: Update pdb usage to include new module option (GH-5111)Mario Corchero2018-01-281-2/+4
* bpo-32206: Pdb can now run modules (GH-4752)Mario Corchero2018-01-061-4/+29
* bpo-31389 Add an optional `header` argument to pdb.set_trace() (#3438)Barry Warsaw2017-09-221-2/+5
* Issue #20766: Merge with 3.5.Xavier de Gaye2016-10-121-3/+7
|\
| * Issue #20766: Fix references leaked by pdb in the handling of SIGINT handlers.Xavier de Gaye2016-10-121-3/+7
* | Issue #18401: pdb tests don't read ~/.pdbrc anymoreŁukasz Langa2016-09-091-10/+12
|/
* Issue #27171: Fix typos in documentation, comments, and test function namesMartin Panter2016-06-021-1/+1
* Issue #27076: Doc, comment and tests spelling fixesMartin Panter2016-05-261-1/+1
* merge from 3.4Terry Jan Reedy2015-09-051-0/+3
|\
| * Issue #16180: Exit pdb if file has syntax error, instead of trapping userTerry Jan Reedy2015-09-051-0/+3
* | Issue #22186: Fix typos in Lib/.Berker Peksag2014-10-191-1/+1
|\ \ | |/
| * Issue #22186: Fix typos in Lib/.Berker Peksag2014-10-191-1/+1
* | Issue #22032: __qualname__ instead of __name__ is now always used to formatSerhiy Storchaka2014-07-221-1/+1
|/
* Issue #19076: Don't pass the redundant 'file' argument to self.error().Berker Peksag2014-07-121-1/+1
* Better behavior when stepping over yield[from]. Fixes issue 16596. By Xavier ...Guido van Rossum2013-11-211-2/+10
* merge with 3.3Georg Brandl2013-10-141-0/+4
|\
| * Closes #17154: error out gracefully on "ignore" or "condition" without argument.Georg Brandl2013-10-141-0/+4
* | pdb: modernize find_function() and add tests for it.Georg Brandl2013-10-131-12/+5
* | 18764: remove the problematic 'print' alias for the PDB 'p' command.R David Murray2013-10-101-5/+3
* | #18705: merge with 3.3.Ezio Melotti2013-08-171-2/+2
|\ \ | |/
| * #18705: fix a number of typos. Patch by Févry Thibault.Ezio Melotti2013-08-171-2/+2
* | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-1/+1
* | Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-1/+1
* | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-5/+5
|/
* Merge issue #13120: Allow to call pdb.set_trace() from thread.Andrew Svetlov2012-12-041-2/+9
|\
| * Issue #13120: Allow to call pdb.set_trace() from thread.Andrew Svetlov2012-12-041-2/+9
* | Close #14210: add command argument completion to pdb: complete file names, gl...Georg Brandl2012-03-101-0/+95
|/
* Add display/undisplay pdb commands.Georg Brandl2010-12-041-2/+66
* #7245: Add a SIGINT handler on continue in pdb that allows to break a program...Georg Brandl2010-12-041-5/+32
* Add the "interact" pdb command from pdb++.Georg Brandl2010-12-041-4/+15
* Use booleans where applicable.Georg Brandl2010-11-291-10/+10
* Remove the comment used while testing.Senthil Kumaran2010-11-291-1/+0
* Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number.Senthil Kumaran2010-11-291-1/+2
* Remove unused imports.Georg Brandl2010-10-141-3/+1
* #9964: fix pdb failure to import under -OO. Warn the user that help is simply...Georg Brandl2010-10-141-15/+20
* 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