Mailing List Archive

python/dist/src/Doc/whatsnew whatsnew23.tex,1.88,1.89
Update of /cvsroot/python/python/dist/src/Doc/whatsnew
In directory sc8-pr-cvs1:/tmp/cvs-serv23499/Doc/whatsnew

Modified Files:
whatsnew23.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: whatsnew23.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew23.tex,v
retrieving revision 1.88
retrieving revision 1.89
diff -C2 -d -r1.88 -r1.89
*** whatsnew23.tex 15 Dec 2002 20:17:38 -0000 1.88
--- whatsnew23.tex 17 Dec 2002 16:15:15 -0000 1.89
***************
*** 13,16 ****
--- 13,18 ----
% MacOS framework-related changes (section of its own, probably)

+ % the new set-next-statement functionality of pdb (SF #643835)
+
%\section{Introduction \label{intro}}

***************
*** 1202,1212 ****
\begin{verbatim}
>>> days = ['Mo', 'Tu', 'We', 'Th', 'Fr', 'St', 'Sn']
['St', 'Sn', 'Th']
['Tu', 'Th', 'Mo', 'We', 'St', 'Fr', 'Sn']
['We', 'Mo', 'Sn', 'Fr', 'Tu', 'St', 'Th']
Traceback (most recent call last):
File "<stdin>", line 1, in ?
--- 1204,1214 ----
\begin{verbatim}
>>> days = ['Mo', 'Tu', 'We', 'Th', 'Fr', 'St', 'Sn']
! >>> random.sample(days, 3) # Choose 3 elements
['St', 'Sn', 'Th']
! >>> random.sample(days, 7) # Choose 7 elements
['Tu', 'Th', 'Mo', 'We', 'St', 'Fr', 'Sn']
! >>> random.sample(days, 7) # Choose 7 again
['We', 'Mo', 'Sn', 'Fr', 'Tu', 'St', 'Th']
! >>> random.sample(days, 8) # Can't choose eight
Traceback (most recent call last):
File "<stdin>", line 1, in ?