diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-11-29 12:27:45 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-11-29 12:27:45 (GMT) |
commit | 5170c81662fbe8b357121c138cd93d9df7941fa2 (patch) | |
tree | 0a1d79337d71eca86ebe5a712448ce3c0e487f6a /Doc | |
parent | a88d2776efac042f6b96d76d7ea3edbd0649c3c6 (diff) | |
download | cpython-5170c81662fbe8b357121c138cd93d9df7941fa2.zip cpython-5170c81662fbe8b357121c138cd93d9df7941fa2.tar.gz cpython-5170c81662fbe8b357121c138cd93d9df7941fa2.tar.bz2 |
Merged revisions 86861 via svnmerge from
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.
........
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/pdb.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst index 4288836..5b145ec 100644 --- a/Doc/library/pdb.rst +++ b/Doc/library/pdb.rst @@ -235,7 +235,8 @@ tbreak [[*filename*:]\ *lineno* | *function*\ [, *condition*]] Temporary breakpoint, which is removed automatically when it is first hit. The arguments are the same as break. -cl(ear) [*bpnumber* [*bpnumber ...*]] +cl(ear) [*filename:lineno* | *bpnumber* [*bpnumber ...*]] + With a *filename:lineno* argument, clear all the breakpoints at this line. With a space separated list of breakpoint numbers, clear those breakpoints. Without argument, clear all breaks (but first ask confirmation). |