[Python-checkins] python/dist/src/Doc/whatsnew whatsnew23.tex,1.25,1.26

akuchling@users.sourceforge.net akuchling@users.sourceforge.net
Mon, 17 Jun 2002 06:40:07 -0700


Update of /cvsroot/python/python/dist/src/Doc/whatsnew
In directory usw-pr-cvs1:/tmp/cvs-serv26831

Modified Files:
	whatsnew23.tex 
Log Message:
Add reminder, and a new POSIX function
Tweak traceback display for consistency


Index: whatsnew23.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew23.tex,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** whatsnew23.tex	14 Jun 2002 00:50:42 -0000	1.25
--- whatsnew23.tex	17 Jun 2002 13:40:04 -0000	1.26
***************
*** 25,28 ****
--- 25,30 ----
  % Docstrings now optional (with --without-doc-strings)
  %
+ % New dependency argument to distutils.Extension
+ %
  
  %\section{Introduction \label{intro}}
***************
*** 110,115 ****
  >>> gen.next()
  Traceback (most recent call last):
!   File "<stdin>", line 1, in ?
!   File "<stdin>", line 2, in generate_ints
  StopIteration
  \end{verbatim}
--- 112,117 ----
  >>> gen.next()
  Traceback (most recent call last):
!   File "stdin", line 1, in ?
!   File "stdin", line 2, in generate_ints
  StopIteration
  \end{verbatim}
***************
*** 535,539 ****
  >>> d.pop(1)
  Traceback (most recent call last):
!   File ``<stdin>'', line 1, in ?
  KeyError: pop(): dictionary is empty
  >>> d
--- 537,541 ----
  >>> d.pop(1)
  Traceback (most recent call last):
!   File ``stdin'', line 1, in ?
  KeyError: pop(): dictionary is empty
  >>> d
***************
*** 551,557 ****
  input values measured in radians. (Contributed by Raymond Hettinger.)
  
! \item Two new functions, \function{killpg()} and \function{mknod()},
! were added to the \module{posix} module that underlies the \module{os}
! module.
  
  \item Two new binary packagers were added to the Distutils.
--- 553,559 ----
  input values measured in radians. (Contributed by Raymond Hettinger.)
  
! \item Three new functions, \function{getpgid()}, \function{killpg()},
! and \function{mknod()}, were added to the \module{posix} module that
! underlies the \module{os} module.
  
  \item Two new binary packagers were added to the Distutils.