summaryrefslogtreecommitdiff
path: root/Lib/test/test_pdb.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-36969: Make PDB args command display keyword only arguments (GH-13452)Miss Islington (bot)2019-05-201-4/+21
* bpo-13120: fix typo with test_issue13120() method name (GH-12250)Miss Islington (bot)2019-04-021-3/+3
* [3.7] bpo-35931: Gracefully handle any exception in pdb debug command (GH-121...Miss Islington (bot)2019-03-111-4/+18
* bpo-35931: Gracefully handle SyntaxError in pdb debug command (GH-11782)Miss Islington (bot)2019-02-151-0/+8
* [3.7] bpo-32691: Use mod_spec.parent when running modules with pdb (GH-5510)Miss Islington (bot)2018-02-041-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-281-0/+60
* bpo-32650 Add support for async generators and more test for coroutines in pd...Pablo Galindo2018-01-281-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
|\
| * Issue #20766: Fix references leaked by pdb in the handling of SIGINT handlers.Xavier de Gaye2016-10-121-0/+23
* | Issue #28338: Restore test_pdb doctests.Xavier de Gaye2016-10-021-1/+1
* | Issue #18401: Fix test_pdb on WindowsVictor Stinner2016-09-091-14/+7
* | Issue #18401: Fix test_pdb if $HOME is not setVictor Stinner2016-09-091-6/+10
* | Issue #18401: pdb tests don't read ~/.pdbrc anymoreŁukasz Langa2016-09-091-19/+55
* | Issue #27076: Merge spelling from 3.5Martin Panter2016-05-261-1/+1
|\ \ | |/
| * Issue #27076: Doc, comment and tests spelling fixesMartin Panter2016-05-261-1/+1
* | Issue #23277: Remove unused imports in tests.Serhiy Storchaka2016-04-241-1/+0
|/
* Issue #16180: Exit pdb if file has syntax error, instead of trapping userTerry Jan Reedy2015-09-051-0/+12
* Issue #23821: Fixed test_pdb failure under -O.Serhiy Storchaka2015-04-011-11/+15
* Issue #22390: Remove files created by testsVictor Stinner2014-10-051-0/+1
* Issue #20746: Fix test_pdb to run in refleak mode (-R). Patch by Xavier de G...Antoine Pitrou2014-08-111-0/+2
* Better behavior when stepping over yield[from]. Fixes issue 16596. By Xavier ...Guido van Rossum2013-11-211-0/+305
* pdb: modernize find_function() and add tests for it.Georg Brandl2013-10-131-0/+30
* 18764: remove the problematic 'print' alias for the PDB 'p' command.R David Murray2013-10-101-3/+6
* Issue #17177: Stop using imp in a bunch of testsBrett Cannon2013-06-151-2/+2
* Issue #17463: Fix test discovery for test_pdb.pyAndrew Svetlov2013-03-181-4/+5
* Merge: skip pdb test for #13120 if threading is not available.Andrew Svetlov2012-12-051-0/+3
|\
| * Skip pdb test for #13120 if threading is not available.Andrew Svetlov2012-12-051-0/+3
* | Merge issue #13120: Allow to call pdb.set_trace() from thread.Andrew Svetlov2012-12-041-0/+27
|\ \ | |/
| * Issue #13120: Allow to call pdb.set_trace() from thread.Andrew Svetlov2012-12-041-0/+27
| * #13183: backport fixes to test_pdb to 3.2 branchGeorg Brandl2012-05-061-2/+5
* | Issue #13183: Revert 0b53b70a40a0 (reenable test on windows)Martin v. Löwis2012-05-021-2/+1
* | fix closes issue13183 - windows test failureSenthil Kumaran2012-05-021-1/+1
|\ \ | |/
| * fix windows test failure - issue13183Senthil Kumaran2012-05-021-1/+1
* | Disable test_13183 temporarily on Windows for 3.3a3 release.v3.3.0a3Georg Brandl2012-05-011-1/+2
* | test_pdb: fix failure of test_issue13183 in debug mode, and make sure files a...Georg Brandl2012-05-011-2/+5
* | issue13183 - Fix pdb skipping frames after hitting a breakpoint and running s...Senthil Kumaran2012-05-011-0/+51
|\ \ | |/
| * issue13183 - Fix pdb skipping frames after hitting a breakpoint and running s...Senthil Kumaran2012-05-011-0/+51
* | Issue #10990: Prevent tests from clobbering a set trace function.Brett Cannon2011-02-211-0/+3
|/
* Fix test suite to not activate new sigint behavior in pdb.Georg Brandl2010-12-041-11/+12
* Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number.Senthil Kumaran2010-11-291-2/+16
* Fix ResourceWarning from subprocess pipe.Brian Curtin2010-11-051-0/+1
* Import test_pdb with its full name, so that running python -m test.test_pdb s...Georg Brandl2010-07-311-8/+8
* Fix pdb test failures on the buildbots.Georg Brandl2010-07-311-3/+3
* Show the traceback line numbers as well as the current line numbers if an exc...Georg Brandl2010-07-301-0/+62