|
3 | 3 | % $Id$ |
4 | 4 |
|
5 | 5 | \title{What's New in Python 2.3} |
6 | | -\release{0.10} |
| 6 | +\release{0.11} |
7 | 7 | \author{A.M.\ Kuchling} |
8 | 8 | \authoraddress{ \email{ [email protected]}} |
9 | 9 |
|
@@ -300,8 +300,8 @@ \section{PEP 263: Source Code Encodings \label{section-encodings}} |
300 | 300 | \begin{seealso} |
301 | 301 |
|
302 | 302 | \seepep{263}{Defining Python Source Code Encodings}{Written by |
303 | | -Marc-Andr\'e Lemburg and Martin von L\"owis; implemented by SUZUKI |
304 | | -Hisao and Martin von L\"owis.} |
| 303 | +Marc-Andr\'e Lemburg and Martin von~L\"owis; implemented by Suzuki |
| 304 | +Hisao and Martin von~L\"owis.} |
305 | 305 |
|
306 | 306 | \end{seealso} |
307 | 307 |
|
@@ -335,7 +335,7 @@ \section{PEP 277: Unicode file name support for Windows NT} |
335 | 335 | \begin{seealso} |
336 | 336 |
|
337 | 337 | \seepep{277}{Unicode file name support for Windows NT}{Written by Neil |
338 | | -Hodgson; implemented by Neil Hodgson, Martin von L\"owis, and Mark |
| 338 | +Hodgson; implemented by Neil Hodgson, Martin von~L\"owis, and Mark |
339 | 339 | Hammond.} |
340 | 340 |
|
341 | 341 | \end{seealso} |
@@ -1091,6 +1091,12 @@ \section{Other Language Changes} |
1091 | 1091 | to concatenate a bunch of strings, for example. (Contributed by Alex |
1092 | 1092 | Martelli.) |
1093 | 1093 |
|
| 1094 | +\item \code{list.insert(\var{pos}, \var{value})} used to |
| 1095 | +insert \var{value} at the front of the list when \var{pos} was |
| 1096 | +negative. The behaviour has now been changed to be consistent with |
| 1097 | +slice indexing, so when \var{pos} is -1 the value will be inserted |
| 1098 | +before the last element, and so forth. |
| 1099 | + |
1094 | 1100 | \item Dictionaries have a new method, \method{pop(\var{key}\optional{, |
1095 | 1101 | \var{default}})}, that returns the value corresponding to \var{key} |
1096 | 1102 | and removes that key/value pair from the dictionary. If the requested |
@@ -1786,7 +1792,7 @@ \section{New, Improved, and Deprecated Modules} |
1786 | 1792 | at least you can find out about the problem. See |
1787 | 1793 | \url{http://mail.python.org/pipermail/python-dev/2002-December/031107.html} % |
1788 | 1794 | for a more detailed explanation of this change. (Implemented by |
1789 | | -Martin von L\"owis.) |
| 1795 | +Martin von~L\"owis.) |
1790 | 1796 |
|
1791 | 1797 | \item Calling Tcl methods through \module{_tkinter} no longer |
1792 | 1798 | returns only strings. Instead, if Tcl returns other objects those |
@@ -2328,9 +2334,9 @@ \section{Acknowledgements \label{acks}} |
2328 | 2334 | article: Jeff Bauer, Simon Brunning, Brett Cannon, Michael Chermside, |
2329 | 2335 | Andrew Dalke, Scott David Daniels, Fred~L. Drake, Jr., Kelly Gerber, |
2330 | 2336 | Raymond Hettinger, Michael Hudson, Chris Lambert, Detlef Lannert, |
2331 | | -Martin von L\"owis, Andrew MacIntyre, Lalo Martins, Gustavo Niemeyer, |
2332 | | -Neal Norwitz, Hans Nowak, Chris Reedy, Francesco Ricciardi, |
2333 | | -Vinay Sajip, Neil Schemenauer, |
2334 | | -Roman Suzi, Jason Tishler, Just van~Rossum. |
| 2337 | +Martin von~L\"owis, Andrew MacIntyre, Lalo Martins, Chad Netzer, |
| 2338 | +Gustavo Niemeyer, Neal Norwitz, Hans Nowak, Chris Reedy, Francesco |
| 2339 | +Ricciardi, Vinay Sajip, Neil Schemenauer, Roman Suzi, Jason Tishler, |
| 2340 | +Just van~Rossum. |
2335 | 2341 |
|
2336 | 2342 | \end{document} |
0 commit comments