summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pdb.py
Commit message (Collapse)AuthorAgeFilesLines
* 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. ........