Mailing List Archive

python/dist/src/Doc/lib libpdb.tex,1.33,1.34
Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1:/tmp/cvs-serv23499/Doc/lib

Modified Files:
libpdb.tex
Log Message:
This is Richie Hindle's patch

[ 643835 ] Set Next Statement for Python debuggers

with a few tweaks by me: adding an unsigned or two, mentioning that
not all jumps are allowed in the doc for pdb, adding a NEWS item and
a note to whatsnew, and AuCTeX doing something cosmetic to libpdb.tex.



Index: libpdb.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libpdb.tex,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** libpdb.tex 5 Nov 2002 22:41:16 -0000 1.33
--- libpdb.tex 17 Dec 2002 16:15:09 -0000 1.34
***************
*** 256,259 ****
--- 256,269 ----
Continue execution, only stop when a breakpoint is encountered.

+ \item[j(ump) \var{lineno}]
+
+ Set the next line that will be executed. Only available in the
+ bottom-most frame. This lets you jump back and execute code
+ again, or jump forward to skip code that you don't want to run.
+
+ It should be noted that not all jumps are allowed -- for instance it
+ it not possible to jump into the middle of a for loop or out of a
+ finally clause.
+
\item[l(ist) \optional{\var{first\optional{, last}}}]

***************
*** 304,308 ****
alias ps pi self
\end{verbatim}
!
\item[unalias \var{name}]

--- 314,318 ----
alias ps pi self
\end{verbatim}
!
\item[unalias \var{name}]