[Python-checkins] python/dist/src/Doc/whatsnew whatsnew23.tex,1.144,1.145

akuchling@users.sourceforge.net akuchling@users.sourceforge.net
Wed, 07 May 2003 10:00:40 -0700


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

Modified Files:
	whatsnew23.tex 
Log Message:
Add list.insert() change for negative positions
Add ~ to MvL's last name
Fix use of all-caps for a name
Bump version number


Index: whatsnew23.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew23.tex,v
retrieving revision 1.144
retrieving revision 1.145
diff -C2 -d -r1.144 -r1.145
*** whatsnew23.tex	30 Apr 2003 15:03:46 -0000	1.144
--- whatsnew23.tex	7 May 2003 17:00:35 -0000	1.145
***************
*** 4,8 ****
  
  \title{What's New in Python 2.3}
! \release{0.10}
  \author{A.M.\ Kuchling}
  \authoraddress{\email{amk@amk.ca}}
--- 4,8 ----
  
  \title{What's New in Python 2.3}
! \release{0.11}
  \author{A.M.\ Kuchling}
  \authoraddress{\email{amk@amk.ca}}
***************
*** 301,306 ****
  
  \seepep{263}{Defining Python Source Code Encodings}{Written by
! Marc-Andr\'e Lemburg and Martin von L\"owis; implemented by SUZUKI
! Hisao and Martin von L\"owis.}
  
  \end{seealso}
--- 301,306 ----
  
  \seepep{263}{Defining Python Source Code Encodings}{Written by
! Marc-Andr\'e Lemburg and Martin von~L\"owis; implemented by Suzuki
! Hisao and Martin von~L\"owis.}
  
  \end{seealso}
***************
*** 336,340 ****
  
  \seepep{277}{Unicode file name support for Windows NT}{Written by Neil
! Hodgson; implemented by Neil Hodgson, Martin von L\"owis, and Mark
  Hammond.}
  
--- 336,340 ----
  
  \seepep{277}{Unicode file name support for Windows NT}{Written by Neil
! Hodgson; implemented by Neil Hodgson, Martin von~L\"owis, and Mark
  Hammond.}
  
***************
*** 1092,1095 ****
--- 1092,1101 ----
  Martelli.)
  
+ \item \code{list.insert(\var{pos}, \var{value})} used to 
+ insert \var{value} at the front of the list when \var{pos} was
+ negative.  The behaviour has now been changed to be consistent with
+ slice indexing, so when \var{pos} is -1 the value will be inserted
+ before the last element, and so forth.
+ 
  \item Dictionaries have a new method, \method{pop(\var{key}\optional{,
  \var{default}})}, that returns the value corresponding to \var{key}
***************
*** 1787,1791 ****
  \url{http://mail.python.org/pipermail/python-dev/2002-December/031107.html} %
  for a more detailed explanation of this change.  (Implemented by
! Martin von L\"owis.)
  
  \item Calling Tcl methods through \module{_tkinter} no longer 
--- 1793,1797 ----
  \url{http://mail.python.org/pipermail/python-dev/2002-December/031107.html} %
  for a more detailed explanation of this change.  (Implemented by
! Martin von~L\"owis.)
  
  \item Calling Tcl methods through \module{_tkinter} no longer 
***************
*** 2329,2336 ****
  Andrew Dalke, Scott David Daniels, Fred~L. Drake, Jr., Kelly Gerber,
  Raymond Hettinger, Michael Hudson, Chris Lambert, Detlef Lannert,
! Martin von L\"owis, Andrew MacIntyre, Lalo Martins, Gustavo Niemeyer,
! Neal Norwitz, Hans Nowak, Chris Reedy, Francesco Ricciardi, 
! Vinay Sajip, Neil Schemenauer,
! Roman Suzi, Jason Tishler, Just van~Rossum.
  
  \end{document}
--- 2335,2342 ----
  Andrew Dalke, Scott David Daniels, Fred~L. Drake, Jr., Kelly Gerber,
  Raymond Hettinger, Michael Hudson, Chris Lambert, Detlef Lannert,
! Martin von~L\"owis, Andrew MacIntyre, Lalo Martins, Chad Netzer,
! Gustavo Niemeyer, Neal Norwitz, Hans Nowak, Chris Reedy, Francesco
! Ricciardi, Vinay Sajip, Neil Schemenauer, Roman Suzi, Jason Tishler,
! Just van~Rossum.
  
  \end{document}