diff options
author | Georg Brandl <georg@python.org> | 2010-07-30 08:45:26 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-07-30 08:45:26 (GMT) |
commit | 26a0f87e28eb9c90446b23d73e78324f2d481a99 (patch) | |
tree | d42b13efa7820881c94fdca13da51a7700cdcd9e /Doc/library/pdb.rst | |
parent | 2dfec552fe6a8884e0dd37be382e2454d701f5d9 (diff) | |
download | cpython-26a0f87e28eb9c90446b23d73e78324f2d481a99.zip cpython-26a0f87e28eb9c90446b23d73e78324f2d481a99.tar.gz cpython-26a0f87e28eb9c90446b23d73e78324f2d481a99.tar.bz2 |
Document the "jump" command in pdb.__doc__, and add a version tag for "until X".
Diffstat (limited to 'Doc/library/pdb.rst')
-rw-r--r-- | Doc/library/pdb.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst index 7f44c08..4e79bad 100644 --- a/Doc/library/pdb.rst +++ b/Doc/library/pdb.rst @@ -339,6 +339,9 @@ by the local file. equal to that is reached. In both cases, also stop when the current frame returns. + .. versionchanged:: 3.2 + Allow giving an explicit line number. + .. pdbcommand:: r(eturn) Continue execution until the current function returns. |