summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pdb.py
Commit message (Collapse)AuthorAgeFilesLines
* 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
|\ \ | |/ | | | | Patch by Ilya Sandler.
| * Issue #13120: Allow to call pdb.set_trace() from thread.Andrew Svetlov2012-12-041-0/+27
| | | | | | | | Patch by Ilya Sandler.
| * #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 ↵Georg Brandl2012-05-011-2/+5
| | | | | | | | are cleaned up.
* | issue13183 - Fix pdb skipping frames after hitting a breakpoint and running ↵Senthil Kumaran2012-05-011-0/+51
|\ \ | |/ | | | | step. Patch by Xavier de Gaye
| * issue13183 - Fix pdb skipping frames after hitting a breakpoint and running ↵Senthil Kumaran2012-05-011-0/+51
| | | | | | | | step. Patch by Xavier de Gaye
* | Issue #10990: Prevent tests from clobbering a set trace function.Brett Cannon2011-02-211-0/+3
|/ | | | | | | | | | | Many tests simply didn't care if they unset a pre-existing trace function. This made test coverage impossible. This patch fixes various tests to put back any pre-existing trace function. It also introduces test.support.no_tracing as a decorator which will temporarily unset the trace function for tests which simply fail otherwise. Thanks to Kristian Vlaardingerbroek for helping to find the cause of various trace function unsets.
* 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
| | | | | Handle multiple breakpoints at same line. Update docs/test. Patch by Xavier de Gaye.
* 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 ↵Georg Brandl2010-07-311-8/+8
| | | | succeeds.
* 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 ↵Georg Brandl2010-07-301-0/+62
| | | | exception is being debugged. Courtesy of pdb++ by Antonio Cuni. Also document -> and >> markers for "list".
* Test that "source" with nonexisting things works as expected.Georg Brandl2010-07-301-0/+3
|
* Add "longlist" and "source" commands, ideas borrowed from pdb++ by Antonio Cuni.Georg Brandl2010-07-301-0/+99
|
* Several enhancements to pdb and its test suite.Georg Brandl2010-07-301-78/+203
| | | | | | | * added basic test for basic commands * removed duplication of command docs, and moved them to their implementation * unified and useful display of exceptions * output messages and errors using overridable methods (also fixes #1503502)
* #7964 followup: add test case to ensure issue remains fixed.Georg Brandl2010-07-301-0/+24
|
* #809887: improve pdb feedback for breakpoint-related actions. Also add a ↵Georg Brandl2010-07-301-2/+80
| | | | functional test for these commands.
* #5294: Fix the behavior of pdb "continue" command when called in the ↵Georg Brandl2010-07-301-0/+42
| | | | top-level debugged frame.
* #1472251: remove addition of "\n" to code given to pdb.run[eval](), the bug ↵Georg Brandl2010-07-301-2/+45
| | | | in exec() that made this necessary has been fixed. Also document that you can give code objects to run() and runeval(), and add some tests to test_pdb.
* Merged revisions 78093 via svnmerge fromGeorg Brandl2010-03-141-3/+0
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r78093 | georg.brandl | 2010-02-07 18:03:15 +0100 (So, 07 Feb 2010) | 1 line Remove unused imports in test modules. ........
* Merged revisions 74838-74839 via svnmerge fromGeorg Brandl2009-09-161-26/+62
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74838 | georg.brandl | 2009-09-16 18:22:12 +0200 (Mi, 16 Sep 2009) | 1 line Remove some more boilerplate from the actual tests in test_pdb. ........ r74839 | georg.brandl | 2009-09-16 18:36:39 +0200 (Mi, 16 Sep 2009) | 1 line Make the pdb displayhook compatible with the standard displayhook: do not print Nones. Add a test for that. ........
* Merged revisions 72322 via svnmerge fromGeorg Brandl2009-05-051-0/+99
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72322 | georg.brandl | 2009-05-05 10:54:11 +0200 (Di, 05 Mai 2009) | 1 line #5142: add module skipping feature to pdb. ........