summaryrefslogtreecommitdiffstats
path: root/Lib/pdb.py
Commit message (Expand)AuthorAgeFilesLines
* gh-110944: Make pdb completion work for alias and convenience vars (GH-110945)Tian Gao2023-11-141-1/+17
* gh-111719: Add extra check for alias command (#111720)Tian Gao2023-11-041-6/+27
* gh-59013: Make line number of function breakpoint more precise (#110582)Tian Gao2023-10-271-1/+18
* GH-102895 Add an option local_exit in code.interact to block exit() from term...Tian Gao2023-10-181-1/+1
* gh-108791: Fix `pdb` CLI invalid argument handling (#108816)Radislav Chugunov2023-10-161-0/+6
* gh-84583: Make pdb enter post-mortem mode even for SyntaxError (#110883)Tian Gao2023-10-151-6/+3
* gh-65052: Prevent pdb from crashing when trying to display objects (#110578)Tian Gao2023-10-111-7/+14
* gh-106670: Set convenience variable for post mortem debugging (#110493)Tian Gao2023-10-091-0/+8
* gh-109164: Replace `getopt` with `argparse` in pdb (#109165)Tian Gao2023-09-221-18/+26
* gh-109375: Fix bug where pdb registers an alias without an associated command...buermarc2023-09-141-2/+5
* GH-106734: Disable tab completion in pdb's multiline mode (GH-106735)Tian Gao2023-09-121-21/+38
* gh-106670: Fix Pdb handling of chained Exceptions with no stacks. (#108865)Matthias Bussonnier2023-09-061-5/+24
* gh-108463: Make expressions/statements work as expected in pdb (#108464)Tian Gao2023-09-041-0/+3
* gh-106670: Allow Pdb to move between chained exceptions (#106676)Matthias Bussonnier2023-08-281-18/+124
* GH-103124: Multiline statement support for pdb (GH-103125)Tian Gao2023-06-151-1/+25
* gh-103464: Add checks for arguments of pdb commands (GH-103465)Tian Gao2023-05-311-8/+56
* gh-104301: Allow leading whitespace in disambiguated pdb statements (#104342)James Gerity2023-05-111-4/+7
* gh-103693: Add convenience variable feature to `pdb` (#103694)Tian Gao2023-05-031-0/+17
* gh-103578: Fix pdb reading code with non-utf8 encoding (#103581)Tian Gao2023-04-261-1/+1
* gh-103143: Polish pdb help messages and doc strings (GH-103144)Tian Gao2023-04-111-8/+59
* gh-102799: use `sys.exception()` instead of `sys.exc_info()` in pdb (#103294)Irit Katriel2023-04-091-8/+9
* gh-103225: Fixed zero lineno issue for pdb (#103265)Tian Gao2023-04-071-2/+12
* gh-103068: Check condition expression of breakpoints for pdb (#103069)gaogaotiantian2023-03-291-12/+26
* gh-103023: Add SyntaxError check in pdb's `display` command (#103024)gaogaotiantian2023-03-271-13/+18
* gh-102778: Add sys.last_exc, deprecate sys.last_type, sys.last_value,sys.last...Irit Katriel2023-03-181-1/+5
* GH-101673: Fix pdb bug where local variable changes are lost after longlist (...gaogaotiantian2023-03-121-11/+2
* gh-93696: Locate frozen module source with __file__ (#93697)James Gerity2022-10-251-0/+6
* gh-95913: make the new internal classes pdb.ModuleTarget/ScriptTarget private...Irit Katriel2022-08-181-4/+4
* bpo-39278: add docstrings to functions in pdb module (#17924)Carl Bordum Hansen2022-05-101-0/+39
* 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-281-1/+5
* bpo-44554: refactor pdb targets (and internal tweaks) (GH-26992)Jason R. Coombs2021-07-191-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-111-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-221-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