Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fcf6b3e

Browse files
committed
Add list.insert() change for negative positions
Add ~ to MvL's last name Fix use of all-caps for a name Bump version number
1 parent 45a9c93 commit fcf6b3e

1 file changed

Lines changed: 15 additions & 9 deletions

File tree

Doc/whatsnew/whatsnew23.tex

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
% $Id$
44

55
\title{What's New in Python 2.3}
6-
\release{0.10}
6+
\release{0.11}
77
\author{A.M.\ Kuchling}
88
\authoraddress{\email{[email protected]}}
99

@@ -300,8 +300,8 @@ \section{PEP 263: Source Code Encodings \label{section-encodings}}
300300
\begin{seealso}
301301

302302
\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.}
305305

306306
\end{seealso}
307307

@@ -335,7 +335,7 @@ \section{PEP 277: Unicode file name support for Windows NT}
335335
\begin{seealso}
336336

337337
\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
339339
Hammond.}
340340

341341
\end{seealso}
@@ -1091,6 +1091,12 @@ \section{Other Language Changes}
10911091
to concatenate a bunch of strings, for example. (Contributed by Alex
10921092
Martelli.)
10931093

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+
10941100
\item Dictionaries have a new method, \method{pop(\var{key}\optional{,
10951101
\var{default}})}, that returns the value corresponding to \var{key}
10961102
and removes that key/value pair from the dictionary. If the requested
@@ -1786,7 +1792,7 @@ \section{New, Improved, and Deprecated Modules}
17861792
at least you can find out about the problem. See
17871793
\url{http://mail.python.org/pipermail/python-dev/2002-December/031107.html} %
17881794
for a more detailed explanation of this change. (Implemented by
1789-
Martin von L\"owis.)
1795+
Martin von~L\"owis.)
17901796

17911797
\item Calling Tcl methods through \module{_tkinter} no longer
17921798
returns only strings. Instead, if Tcl returns other objects those
@@ -2328,9 +2334,9 @@ \section{Acknowledgements \label{acks}}
23282334
article: Jeff Bauer, Simon Brunning, Brett Cannon, Michael Chermside,
23292335
Andrew Dalke, Scott David Daniels, Fred~L. Drake, Jr., Kelly Gerber,
23302336
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.
23352341

23362342
\end{document}

0 commit comments

Comments
 (0)