index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_pdb.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-114099: Add test exclusions to support running the test suite on iOS (#114...
Russell Keith-Magee
2024-02-05
1
-49/+53
*
gh-59013: Set breakpoint on the first executable line of function when using ...
Tian Gao
2024-01-31
1
-3/+28
*
gh-111051: Check if file is modifed during debugging in `pdb` (#111052)
Tian Gao
2024-01-25
1
-0/+81
*
gh-114275: Skip doctests that use `asyncio` in `test_pdb` for WASI builds (#1...
Nikita Sobolev
2024-01-19
1
-202/+208
*
gh-108303: Move all doctest related files and tests to `Lib/test/test_doctest...
Nikita Sobolev
2024-01-18
1
-4/+2
*
gh-112343: pdb: Use tokenize to replace convenience variables (#112380)
Tian Gao
2024-01-17
1
-0/+9
*
gh-102980: Redirect output of pdb's `interact` command, add tests and improve...
Tian Gao
2023-12-07
1
-0/+53
*
gh-112510: Add `readline.backend` for the backend readline uses (GH-112511)
Tian Gao
2023-12-01
1
-1/+1
*
gh-99367: Do not mangle sys.path[0] in pdb if safe_path is set (#111762)
Tian Gao
2023-11-27
1
-4/+29
*
gh-110944: Make pdb completion work for alias and convenience vars (GH-110945)
Tian Gao
2023-11-14
1
-0/+21
*
gh-110944: Move pty helper to test.support and add basic pdb completion test ...
Tian Gao
2023-11-13
1
-0/+30
*
gh-80731: Avoid executing code in except block in cmd (GH-111740)
Tian Gao
2023-11-10
1
-0/+25
*
gh-111719: Add extra check for alias command (#111720)
Tian Gao
2023-11-04
1
-0/+22
*
gh-80675: Set `f_trace_lines = True` on all frames upon `pdb.set_trace()` (#1...
Tian Gao
2023-11-04
1
-0/+24
*
gh-59013: Make line number of function breakpoint more precise (#110582)
Tian Gao
2023-10-27
1
-2/+44
*
gh-108791: Fix `pdb` CLI invalid argument handling (#108816)
Radislav Chugunov
2023-10-16
1
-2/+17
*
gh-84583: Make pdb enter post-mortem mode even for SyntaxError (#110883)
Tian Gao
2023-10-15
1
-1/+16
*
gh-65052: Prevent pdb from crashing when trying to display objects (#110578)
Tian Gao
2023-10-11
1
-0/+47
*
gh-106670: Set convenience variable for post mortem debugging (#110493)
Tian Gao
2023-10-09
1
-0/+6
*
gh-109375: Fix bug where pdb registers an alias without an associated command...
buermarc
2023-09-14
1
-0/+6
*
GH-108976. Keep monitoring data structures valid during de-optimization durin...
Mark Shannon
2023-09-11
1
-0/+18
*
gh-106670: Fix Pdb handling of chained Exceptions with no stacks. (#108865)
Matthias Bussonnier
2023-09-06
1
-25/+84
*
gh-108463: Make expressions/statements work as expected in pdb (#108464)
Tian Gao
2023-09-04
1
-0/+40
*
gh-106670: Allow Pdb to move between chained exceptions (#106676)
Matthias Bussonnier
2023-08-28
1
-0/+343
*
GH-103124: Multiline statement support for pdb (GH-103125)
Tian Gao
2023-06-15
1
-3/+30
*
gh-103464: Add checks for arguments of pdb commands (GH-103465)
Tian Gao
2023-05-31
1
-3/+33
*
GH-103082: Filter LINE events in VM, to simplify tool implementation. (GH-104...
Mark Shannon
2023-05-12
1
-2/+3
*
gh-104301: Allow leading whitespace in disambiguated pdb statements (#104342)
James Gerity
2023-05-11
1
-0/+23
*
gh-103693: Add convenience variable feature to `pdb` (#103694)
Tian Gao
2023-05-03
1
-0/+78
*
gh-103578: Fix pdb reading code with non-utf8 encoding (#103581)
Tian Gao
2023-04-26
1
-0/+6
*
gh-101517: fix line number propagation in code generated for except* (#103550)
Irit Katriel
2023-04-24
1
-2/+2
*
gh-101517: Add regression test for a lineno bug in try/except* impacting pdb ...
Tian Gao
2023-04-14
1
-0/+20
*
gh-103225: Fixed zero lineno issue for pdb (#103265)
Tian Gao
2023-04-07
1
-0/+25
*
gh-103068: Check condition expression of breakpoints for pdb (#103069)
gaogaotiantian
2023-03-29
1
-1/+17
*
gh-103023: Add SyntaxError check in pdb's `display` command (#103024)
gaogaotiantian
2023-03-27
1
-0/+6
*
gh-102980: Add tests for pdf's display, alias and where commands (#102981)
gaogaotiantian
2023-03-24
1
-0/+150
*
GH-101673: Fix pdb bug where local variable changes are lost after longlist (...
gaogaotiantian
2023-03-12
1
-0/+29
*
gh-93696: Locate frozen module source with __file__ (#93697)
James Gerity
2022-10-25
1
-0/+46
*
gh-94215: Fix error handling for line-tracing events (GH-94681)
Brandt Bucher
2022-07-08
1
-1/+0
*
gh-94215: Add reproducer for segfault in frame_setlineno() (GH-94563)
Christian Heimes
2022-07-07
1
-6/+104
*
GH-91742: Fix pdb crash after jump (GH-94171)
Kumar Aditya
2022-06-23
1
-0/+43
*
gh-57684: Update tests for PYTHONSAFEPATH=1 (#92358)
Victor Stinner
2022-05-06
1
-0/+2
*
bpo-40280: Skip socket, fork, subprocess tests on Emscripten (GH-31986)
Christian Heimes
2022-03-22
1
-0/+2
*
bpo-46434: Handle missing docstrings in pdb help (GH-30705)
Tom Sparrow
2022-01-21
1
-0/+21
*
bpo-45208: Make test_pdb.test_checkline_is_not_executable() quiet (GH-28354)
Victor Stinner
2021-09-15
1
-13/+14
*
bpo-5846: Do not use obsolete unittest functions. (GH-28303)
Serhiy Storchaka
2021-09-13
1
-7/+3
*
bpo-44682: Handle invalid arg to pdb's "commands" directive (#27252)
andrei kulakov
2021-07-28
1
-0/+11
*
bpo-44461: Check early that a pdb target is valid for execution. (#27227)
Jason R. Coombs
2021-07-28
1
-0/+14
*
bpo-44554: refactor pdb targets (and internal tweaks) (GH-26992)
Jason R. Coombs
2021-07-19
1
-1/+1
*
bpo-41137: Use utf-8 encoding while reading .pdbrc files (GH-21263)
Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)
2021-07-08
1
-0/+34
[next]