summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pdb.py
Commit message (Collapse)AuthorAgeFilesLines
* #13183: backport fixes to test_pdb to 2.7 branchGeorg Brandl2012-05-061-2/+5
|
* fix windows test failure - issue13183Senthil Kumaran2012-05-011-1/+1
|
* issue13183 - Fix pdb skipping frames after hitting a breakpoint and running ↵Senthil Kumaran2012-05-011-1/+57
| | | | step. Patch by Xavier de Gaye
* Implemented suggested improvements for pdb test by Éric AraujoJason R. Coombs2011-12-091-18/+19
|
* PDB now will properly escape backslashes in the names of modules it ↵Jason R. Coombs2011-11-171-0/+27
| | | | executes. Fixes #7750
* Merged revisions 86861 via svnmerge fromSenthil Kumaran2010-11-291-0/+110
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86861 | senthil.kumaran | 2010-11-29 19:54:17 +0800 (Mon, 29 Nov 2010) | 5 lines Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number. Handle multiple breakpoints at same line. Update docs/test. Patch by Xavier de Gaye. ........
* Merged revisions 83259,83261,83264-83265,83268-83269,83271-83272,83281 via ↵Georg Brandl2010-08-011-0/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83259 | georg.brandl | 2010-07-30 09:03:39 +0200 (Fr, 30 Jul 2010) | 1 line Clarification. ........ r83261 | georg.brandl | 2010-07-30 09:21:26 +0200 (Fr, 30 Jul 2010) | 1 line #9230: allow Pdb.checkline() to be called without a current frame, for setting breakpoints before starting debugging. ........ r83264 | georg.brandl | 2010-07-30 10:45:26 +0200 (Fr, 30 Jul 2010) | 1 line Document the "jump" command in pdb.__doc__, and add a version tag for "until X". ........ r83265 | georg.brandl | 2010-07-30 10:54:49 +0200 (Fr, 30 Jul 2010) | 1 line #8015: fix crash when entering an empty line for breakpoint commands. Also restore environment properly when an exception occurs during the definition of commands. ........ r83268 | georg.brandl | 2010-07-30 11:23:23 +0200 (Fr, 30 Jul 2010) | 2 lines Issue #8048: Prevent doctests from failing when sys.displayhook has been reassigned. ........ r83269 | georg.brandl | 2010-07-30 11:43:00 +0200 (Fr, 30 Jul 2010) | 1 line #6719: In pdb, do not stop somewhere in the encodings machinery if the source file to be debugged is in a non-builtin encoding. ........ r83271 | georg.brandl | 2010-07-30 11:59:28 +0200 (Fr, 30 Jul 2010) | 1 line #5727: Restore the ability to use readline when calling into pdb in doctests. ........ r83272 | georg.brandl | 2010-07-30 12:29:19 +0200 (Fr, 30 Jul 2010) | 1 line #5294: Fix the behavior of pdb "continue" command when called in the top-level debugged frame. ........ r83281 | georg.brandl | 2010-07-30 15:36:43 +0200 (Fr, 30 Jul 2010) | 1 line Add myself for pdb. ........
* Revert r83267, as it breaks a few doctests and generally leads to ugly ↵Georg Brandl2010-07-301-27/+0
| | | | truncated output.
* #7539: use _saferepr() for printing exceptions from pdb.Georg Brandl2010-07-301-0/+27
|
* Remove unused imports in test modules.Georg Brandl2010-02-071-3/+0
|
* Make the pdb displayhook compatible with the standard displayhook: do not ↵Georg Brandl2009-09-161-1/+33
| | | | print Nones. Add a test for that.
* Remove some more boilerplate from the actual tests in test_pdb.Georg Brandl2009-09-161-27/+34
|
* #5142: add module skipping feature to pdb.Georg Brandl2009-05-051-0/+99