summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pdb.py
Commit message (Expand)AuthorAgeFilesLines
* gh-110944: Make pdb completion work for alias and convenience vars (GH-110945)Tian Gao2023-11-141-0/+21
* gh-110944: Move pty helper to test.support and add basic pdb completion test ...Tian Gao2023-11-131-0/+30
* gh-80731: Avoid executing code in except block in cmd (GH-111740)Tian Gao2023-11-101-0/+25
* gh-111719: Add extra check for alias command (#111720)Tian Gao2023-11-041-0/+22
* gh-80675: Set `f_trace_lines = True` on all frames upon `pdb.set_trace()` (#1...Tian Gao2023-11-041-0/+24
* gh-59013: Make line number of function breakpoint more precise (#110582)Tian Gao2023-10-271-2/+44
* gh-108791: Fix `pdb` CLI invalid argument handling (#108816)Radislav Chugunov2023-10-161-2/+17
* gh-84583: Make pdb enter post-mortem mode even for SyntaxError (#110883)Tian Gao2023-10-151-1/+16
* gh-65052: Prevent pdb from crashing when trying to display objects (#110578)Tian Gao2023-10-111-0/+47
* gh-106670: Set convenience variable for post mortem debugging (#110493)Tian Gao2023-10-091-0/+6
* gh-109375: Fix bug where pdb registers an alias without an associated command...buermarc2023-09-141-0/+6
* GH-108976. Keep monitoring data structures valid during de-optimization durin...Mark Shannon2023-09-111-0/+18
* gh-106670: Fix Pdb handling of chained Exceptions with no stacks. (#108865)Matthias Bussonnier2023-09-061-25/+84
* gh-108463: Make expressions/statements work as expected in pdb (#108464)Tian Gao2023-09-041-0/+40
* gh-106670: Allow Pdb to move between chained exceptions (#106676)Matthias Bussonnier2023-08-281-0/+343
* GH-103124: Multiline statement support for pdb (GH-103125)Tian Gao2023-06-151-3/+30
* gh-103464: Add checks for arguments of pdb commands (GH-103465)Tian Gao2023-05-311-3/+33
* GH-103082: Filter LINE events in VM, to simplify tool implementation. (GH-104...Mark Shannon2023-05-121-2/+3
* gh-104301: Allow leading whitespace in disambiguated pdb statements (#104342)James Gerity2023-05-111-0/+23
* gh-103693: Add convenience variable feature to `pdb` (#103694)Tian Gao2023-05-031-0/+78
* gh-103578: Fix pdb reading code with non-utf8 encoding (#103581)Tian Gao2023-04-261-0/+6
* gh-101517: fix line number propagation in code generated for except* (#103550)Irit Katriel2023-04-241-2/+2
* gh-101517: Add regression test for a lineno bug in try/except* impacting pdb ...Tian Gao2023-04-141-0/+20
* gh-103225: Fixed zero lineno issue for pdb (#103265)Tian Gao2023-04-071-0/+25
* gh-103068: Check condition expression of breakpoints for pdb (#103069)gaogaotiantian2023-03-291-1/+17
* gh-103023: Add SyntaxError check in pdb's `display` command (#103024)gaogaotiantian2023-03-271-0/+6
* gh-102980: Add tests for pdf's display, alias and where commands (#102981)gaogaotiantian2023-03-241-0/+150
* GH-101673: Fix pdb bug where local variable changes are lost after longlist (...gaogaotiantian2023-03-121-0/+29
* gh-93696: Locate frozen module source with __file__ (#93697)James Gerity2022-10-251-0/+46
* gh-94215: Fix error handling for line-tracing events (GH-94681)Brandt Bucher2022-07-081-1/+0
* gh-94215: Add reproducer for segfault in frame_setlineno() (GH-94563)Christian Heimes2022-07-071-6/+104
* GH-91742: Fix pdb crash after jump (GH-94171)Kumar Aditya2022-06-231-0/+43
* gh-57684: Update tests for PYTHONSAFEPATH=1 (#92358)Victor Stinner2022-05-061-0/+2
* bpo-40280: Skip socket, fork, subprocess tests on Emscripten (GH-31986)Christian Heimes2022-03-221-0/+2
* bpo-46434: Handle missing docstrings in pdb help (GH-30705)Tom Sparrow2022-01-211-0/+21
* bpo-45208: Make test_pdb.test_checkline_is_not_executable() quiet (GH-28354)Victor Stinner2021-09-151-13/+14
* bpo-5846: Do not use obsolete unittest functions. (GH-28303)Serhiy Storchaka2021-09-131-7/+3
* bpo-44682: Handle invalid arg to pdb's "commands" directive (#27252)andrei kulakov2021-07-281-0/+11
* bpo-44461: Check early that a pdb target is valid for execution. (#27227)Jason R. Coombs2021-07-281-0/+14
* bpo-44554: refactor pdb targets (and internal tweaks) (GH-26992)Jason R. Coombs2021-07-191-1/+1
* bpo-41137: Use utf-8 encoding while reading .pdbrc files (GH-21263)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2021-07-081-0/+34
* bpo-34266: [pdb] handle ValueError from shlex.split() (GH-26656)Irit Katriel2021-07-031-0/+15
* bpo-43318: Fix a bug where pdb does not always echo cleared breakpoints (GH-2...huzhaojie2021-06-111-0/+29
* bpo-37022: Fix bug where pdb's do_p/do_pp commands swallow exceptions from re...Daniel Hahler2021-06-101-0/+28
* bpo-44348: Move trace-info to thread-state (GH-26623)Mark Shannon2021-06-101-2/+2
* bpo-28528: Fix pdb.checkline() attribute error when 'curframe' is None. (#25438)Erlend Egeberg Aasland2021-05-111-0/+38
* bpo-43960: test_pdb resets breakpoints (GH-25673)Irit Katriel2021-04-281-0/+1
* bpo-24160: Fix test_pdb refleaks failure (GH-25182)Irit Katriel2021-04-041-3/+3
* bpo-24160: Fix breakpoints persistence across multiple pdb sessions (GH-21989)Irit Katriel2021-04-021-7/+73
* bpo-26053: Fix test_pdb.test_issue26053() (GH-25139)Irit Katriel2021-04-011-3/+3