aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* gh-93696: Locate frozen module source with __file__ (GH-93697)Miss Islington (bot)2022-10-251-0/+6
* [3.11] gh-95913: make the new internal classes pdb.ModuleTarget/ScriptTarget ...Miss Islington (bot)2022-08-181-4/+4
* bpo-46434: Handle missing docstrings in pdb help (GH-30705)Tom Sparrow2022-01-211-0/+3
* bpo-44682: Handle invalid arg to pdb's "commands" directive (#27252)andrei kulakov2021-07-281-0/+6
* bpo-44461: Check early that a pdb target is valid for execution. (#27227)Jason R. Coombs2021-07-271-1/+5
* bpo-44554: refactor pdb targets (and internal tweaks) (GH-26992)Jason R. Coombs2021-07-181-64/+104
* bpo-41137: Use utf-8 encoding while reading .pdbrc files (GH-21263)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2021-07-081-2/+2
* bpo-34266: [pdb] handle ValueError from shlex.split() (GH-26656)Irit Katriel2021-07-031-1/+5
* bpo-43318: Fix a bug where pdb does not always echo cleared breakpoints (GH-2...huzhaojie2021-06-111-1/+1
* bpo-37022: Fix bug where pdb's do_p/do_pp commands swallow exceptions from re...Daniel Hahler2021-06-101-14/+19
* bpo-28528: Fix pdb.checkline() attribute error when 'curframe' is None. (#25438)Erlend Egeberg Aasland2021-05-121-1/+2
* bpo-26053: Fix args echoed by pdb run command (#22033)Irit Katriel2021-04-011-1/+1
* bpo-42384: pdb: correctly populate sys.path[0] (GH-23338)Andrey Bienkowski2021-01-211-1/+2
* bpo-41609: Fix output of pdb's whatis command for instance methods (GH-21935)Irit Katriel2020-08-271-6/+6
* bpo-41058: Use source file encoding in pdb.find_function(). (GH-21010)Serhiy Storchaka2020-06-211-1/+2
* bpo-41043: Escape literal part of the path for glob(). (GH-20994)Serhiy Storchaka2020-06-201-1/+1
* bpo-38723: Pdb._runscript should use io.open_code() instead of open() (GH-17127)jsnklln2019-11-121-1/+2
* closes bpo-37803: pdb: fix handling of options (--help / --version) (GH-15193)Daniel Hahler2019-09-121-1/+1
* bpo-36250: ignore ValueError from signal in non-main thread (GH-12251)Daniel Hahler2019-09-091-2/+6
* bpo-20523: pdb searches for .pdbrc in ~ instead of $HOME (GH-11847)Timothy Hopper2019-08-021-8/+6
* bpo-37363: Add audit events for a range of modules (GH-14301)Steve Dower2019-06-241-0/+1
* bpo-37122: Make co->co_argcount represent the total number of positonal argum...Pablo Galindo2019-06-011-1/+1
* bpo-36969: Make PDB args command display positional only arguments (GH-13459)Rémi Lapeyre2019-05-241-1/+1
* bpo-36969: Make PDB args command display keyword only arguments (GH-13452)Rémi Lapeyre2019-05-201-3/+3
* bpo-36431: Use PEP 448 dict unpacking for merging two dicts. (GH-12553)Serhiy Storchaka2019-03-271-4/+2
* bpo-35931: Gracefully handle any exception in pdb debug command (GH-12103)Daniel Hahler2019-03-111-7/+5
* bpo-35931: Gracefully handle SyntaxError in pdb debug command (GH-11782)Daniel Hahler2019-02-151-1/+7
* bpo-32691: Use mod_spec.parent when running modules with pdb (GH-5474)Mario Corchero2018-02-031-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