summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2004-06-03 13:31:22 (GMT)
committerFred Drake <fdrake@acm.org>2004-06-03 13:31:22 (GMT)
commitd6d35d954bf4b0738d2d0e50a15441376ab98fe1 (patch)
tree6e7dc25bc5df47c4c4ec2a4d8c51aaab29710f3f /Doc
parent77ca6c4c8483c22c6ba6200a94e9628671c82a3d (diff)
downloadcpython-d6d35d954bf4b0738d2d0e50a15441376ab98fe1.zip
cpython-d6d35d954bf4b0738d2d0e50a15441376ab98fe1.tar.gz
cpython-d6d35d954bf4b0738d2d0e50a15441376ab98fe1.tar.bz2
- fix typo reported by John Belmonte
- wrap a long line
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/whatsnew24.tex8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/whatsnew/whatsnew24.tex b/Doc/whatsnew/whatsnew24.tex
index 638eadb..2ae66ba 100644
--- a/Doc/whatsnew/whatsnew24.tex
+++ b/Doc/whatsnew/whatsnew24.tex
@@ -369,7 +369,7 @@ yellow 5
use as arguments to functionals:
\samp{map(mydict.__getitem__, keylist)}.
-\item Added an newcode opcode, \code{LIST_APPEND}, that simplifies
+\item Added a new opcode, \code{LIST_APPEND}, that simplifies
the generated bytecode for list comprehensions and speeds them up
by about a third.
@@ -393,9 +393,9 @@ details.
\begin{itemize}
\item The \module{curses} modules now supports the ncurses extension
- \function{use_default_colors()}. On platforms where the terminal
- supports transparency, this makes it possible to use a transparent background.
- (Contributed by J\"org Lehmann.)
+ \function{use_default_colors()}. On platforms where the terminal
+ supports transparency, this makes it possible to use a transparent
+ background. (Contributed by J\"org Lehmann.)
\item The \module{bisect} module now has an underlying C implementation
for improved performance.