summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pdb.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* bpo-26053: Fix args echoed by pdb run command (#22033)Irit Katriel2021-04-011-0/+13
* bpo-42383: pdb: do not fail to restart the target if the current directory ch...Andrey Bienkowski2021-01-251-0/+23
* bpo-42384: pdb: correctly populate sys.path[0] (GH-23338)Andrey Bienkowski2021-01-221-0/+42
* bpo-42864: Improve error messages regarding unclosed parentheses (GH-24161)Pablo Galindo2021-01-191-2/+2
* bpo-42246: Partial implementation of PEP 626. (GH-23113)Mark Shannon2020-11-121-1/+2
* bpo-41609: Fix output of pdb's whatis command for instance methods (GH-21935)Irit Katriel2020-08-271-0/+41
* bpo-40275: Use new test.support helper submodules in tests (GH-21452)Hai Shi2020-08-041-24/+24
* bpo-41069: Make TESTFN and the CWD for tests containing non-ascii characters....Serhiy Storchaka2020-06-251-4/+7
* bpo-41058: Use source file encoding in pdb.find_function(). (GH-21010)Serhiy Storchaka2020-06-211-13/+39
* bpo-36250: ignore ValueError from signal in non-main thread (GH-12251)Daniel Hahler2019-09-091-0/+29
* bpo-20523: pdb searches for .pdbrc in ~ instead of $HOME (GH-11847)Timothy Hopper2019-08-021-0/+13
* Fix typos in comments, docs and test names (#15018)Min ho Kim2019-07-301-2/+2
* bpo-36969: Make PDB args command display positional only arguments (GH-13459)Rémi Lapeyre2019-05-241-5/+28
* bpo-36969: Make PDB args command display keyword only arguments (GH-13452)Rémi Lapeyre2019-05-201-4/+21
* bpo-13120: fix typo with test_issue13120() method name (GH-12250)Daniel Hahler2019-04-011-3/+3
* bpo-35931: Gracefully handle any exception in pdb debug command (GH-12103)Daniel Hahler2019-03-121-4/+18
* bpo-35931: Gracefully handle SyntaxError in pdb debug command (GH-11782)Daniel Hahler2019-02-151-0/+8
* bpo-33562: Check the global asyncio event loop policy isn't set after any tes...Brett Cannon2018-06-021-0/+4
* bpo-32691: Use mod_spec.parent when running modules with pdb (GH-5474)Mario Corchero2018-02-031-1/+32
* Add a test for pdb until command in coroutine (#5427)Andrew Svetlov2018-01-291-0/+46
* bpo-32650: Add an asyncgen pdb test (#5406)Yury Selivanov2018-01-291-0/+60
* bpo-32650 Add support for async generators and more test for coroutines in pd...Pablo Galindo2018-01-291-1/+42
* bpo-32650: Add native coroutine support to bdb when stepping over line (GH-5400)Pablo Galindo2018-01-291-0/+55
* bpo-32206: Update pdb usage to include new module option (GH-5111)Mario Corchero2018-01-281-1/+4
* bpo-32206: Pdb can now run modules (GH-4752)Mario Corchero2018-01-061-17/+144
* bpo-31389 Add an optional `header` argument to pdb.set_trace() (#3438)Barry Warsaw2017-09-221-0/+12
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-3/+0
* Issue #20766: Merge with 3.5.Xavier de Gaye2016-10-121-0/+23
|\