summaryrefslogtreecommitdiffstats
path: root/Lib/bdb.py
Commit message (Expand)AuthorAgeFilesLines
* gh-136057: Allow step and next to step over for loops (#136160)Tian Gao2025-11-161-4/+18
* gh-136980: Remove unused C tracing code in bdb (#136981)FredericDT2025-07-241-11/+2
* gh-132536: Do not disable PY_THROW event in bdb (#132537)Tian Gao2025-04-151-12/+8
* gh-120144: Refactor bdb monitoring backend to match settrace behavior (#132484)Tian Gao2025-04-131-23/+12
* gh-120144: Disable the CALL event when possible to achieve zero overhead pdb ...Tian Gao2025-03-211-1/+6
* gh-120144: Make it possible to use `sys.monitoring` for bdb and make it defau...Tian Gao2025-03-171-11/+229
* gh-82987: Stop on calling frame unconditionally for inline breakpoints (#130493)Tian Gao2025-03-041-3/+6
* gh-128991: Release the enter frame reference within bdb callback (#128992)Tian Gao2025-01-181-32/+36
* gh-58956: Fix a frame refleak in bdb (#128190)Tian Gao2025-01-171-0/+2
* gh-58956: Set f_trace on frames with breakpoints after setting a new breakpoi...Tian Gao2024-10-151-0/+8
* gh-125422: Don't set the caller's f_trace if it's botframe (#125427)Tian Gao2024-10-151-2/+3
* gh-124552 : Improve the accuracy of possible breakpoint check in bdb (#124553)Tian Gao2024-10-051-3/+24
* gh-121450: Make inline breakpoints use the most recent pdb instance (#121451)Tian Gao2024-07-111-0/+1
* gh-58933: Make pdb return to caller frame correctly when f_trace is not set (...Tian Gao2024-05-131-7/+9
* GH-111744: Make breakpoint() enter the debugger immediately (GH-118579)Tian Gao2024-05-051-1/+1
* GH-111744: Support opcode events in bdb (GH-111834)Tian Gao2024-05-041-15/+57
* gh-80675: Set `f_trace_lines = True` on all frames upon `pdb.set_trace()` (#1...Tian Gao2023-11-041-0/+7
* gh-101517: fix line number propagation in code generated for except* (#103550)Irit Katriel2023-04-241-0/+2
* gh-101517: make bdb avoid looking up in linecache with lineno=None (#101787)Irit Katriel2023-02-101-3/+4
* bpo-30419: DOC: Update missing information in bdb docs (#1687)Cheryl Sabella2022-09-021-7/+10
* fix docstring typo in bdb.py (GH-22323)flizzywine2021-05-161-1/+1
* bpo-24160: Fix breakpoints persistence across multiple pdb sessions (GH-21989)Irit Katriel2021-04-021-3/+26
* bpo-39649: Remove obsolete check for `__args__` in bdb.Bdb.format_stack_entry...Daniel Hahler2020-02-241-8/+1
* Fix typos mostly in comments, docs and test names (GH-15209)Min ho Kim2019-08-301-1/+1
* [3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620)Serhiy Storchaka2019-06-051-17/+1
* Fix typos in docs and docstrings (GH-13745)Xtreak2019-06-021-1/+1
* bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705)Serhiy Storchaka2019-05-061-0/+1
* bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637)Serhiy Storchaka2019-04-011-1/+16
* Fix stepping into a frame without a __name__ (GH-12064)Anthony Sottile2019-03-131-0/+2
* bpo-34906: Doc: Fix typos (GH-9712)Stéphane Wirtel2018-10-051-1/+1
* Docs: fix some wrong words (GH-6987)Eitan Adler2018-06-021-1/+1
* bpo-32650 Add support for async generators and more test for coroutines in pd...Pablo Galindo2018-01-291-6/+8
* bpo-32650: Add native coroutine support to bdb when stepping over line (GH-5400)Pablo Galindo2018-01-291-6/+6
* bpo-30211: bdb: add docstrings (#1350)csabella2017-05-161-18/+212
* bpo-29762: More use "raise from None". (#569)Serhiy Storchaka2017-04-051-2/+2
* Better behavior when stepping over yield[from]. Fixes issue 16596. By Xavier ...Guido van Rossum2013-11-211-5/+31
* issue13183 - Fix pdb skipping frames after hitting a breakpoint and running s...Senthil Kumaran2012-05-011-1/+14
* Issue #10492: bdb.Bdb.run() only traces the execution of the codeVictor Stinner2011-01-061-0/+2
* Fix accidental checkin.Georg Brandl2010-12-041-1/+1
* #7245: Add a SIGINT handler on continue in pdb that allows to break a program...Georg Brandl2010-12-041-1/+1
* Use booleans where applicable.Georg Brandl2010-11-291-11/+11
* Code style cleanup in bdb.Georg Brandl2010-11-291-31/+21
* Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number.Senthil Kumaran2010-11-291-5/+9
* Modernize code in effective().Georg Brandl2010-11-261-21/+15
* Add Breakpoint.bpformat(), which returns the info usually printed by bpprint(...Georg Brandl2010-07-301-9/+14
* #809887: improve pdb feedback for breakpoint-related actions. Also add a fun...Georg Brandl2010-07-301-9/+21
* #5294: Fix the behavior of pdb "continue" command when called in the top-leve...Georg Brandl2010-07-301-3/+7
* #1472251: remove addition of "\n" to code given to pdb.run[eval](), the bug i...Georg Brandl2010-07-301-6/+3
* Allow giving an explicit line number to "until".Georg Brandl2010-07-301-2/+5
* Merged revisions 72322 via svnmerge fromGeorg Brandl2009-05-051-1/+12