diff options
author | Georg Brandl <georg@python.org> | 2008-01-05 20:00:55 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-01-05 20:00:55 (GMT) |
commit | d348b2587e01f76a30c07bfa248653bb6b60142f (patch) | |
tree | ea021bed326b54dbfa1de7765ea9ab36d9e74653 /Lib/pdb.py | |
parent | 84df79b2499a051ee2ca09c38db6b4af1d49e14a (diff) | |
download | cpython-d348b2587e01f76a30c07bfa248653bb6b60142f.zip cpython-d348b2587e01f76a30c07bfa248653bb6b60142f.tar.gz cpython-d348b2587e01f76a30c07bfa248653bb6b60142f.tar.bz2 |
Remove several mentions of old Python versions that don't apply anymore.
Diffstat (limited to 'Lib/pdb.py')
-rwxr-xr-x | Lib/pdb.py | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -909,12 +909,7 @@ the .py suffix may be omitted.""", file=self.stdout) With a space separated list of breakpoint numbers, clear those breakpoints. Without argument, clear all breaks (but first ask confirmation). With a filename:lineno argument, -clear all breaks at that line in that file. - -Note that the argument is different from previous versions of -the debugger (in python distributions 1.5.1 and before) where -a linenumber was used instead of either filename:lineno or -breakpoint numbers.""", file=self.stdout) +clear all breaks at that line in that file.""", file=self.stdout) def help_tbreak(self): print("""tbreak same arguments as break, but breakpoint is |