summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-05-23 12:49:35 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2006-05-23 12:49:35 (GMT)
commit3e134a596069c8c6b9c7817258ed431c9f00aa5a (patch)
treeb574cec3d375bdf0eb0dbc04e884e63c06c32449 /Doc/whatsnew
parent1cdace4294c3eda12c9787cda74e1653b157145f (diff)
downloadcpython-3e134a596069c8c6b9c7817258ed431c9f00aa5a.zip
cpython-3e134a596069c8c6b9c7817258ed431c9f00aa5a.tar.gz
cpython-3e134a596069c8c6b9c7817258ed431c9f00aa5a.tar.bz2
Use 'speed' instead of 'performance', because I agree with the argument
at http://zestyping.livejournal.com/193260.html that 'erformance' really means something more general.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/whatsnew25.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/whatsnew25.tex b/Doc/whatsnew/whatsnew25.tex
index acb5bdb..b5a5236 100644
--- a/Doc/whatsnew/whatsnew25.tex
+++ b/Doc/whatsnew/whatsnew25.tex
@@ -1136,7 +1136,7 @@ In 2.5 the internal data structure has been customized for implementing sets,
and as a result sets will use a third less memory and are somewhat faster.
(Implemented by Raymond Hettinger.)
-\item The performance of some Unicode operations, such as
+\item The speed of some Unicode operations, such as
finding substrings and character map decoding, has been improved.
(Substring search improvements were added by Fredrik Lundh and Andrew
Dalke at the NeedForSpeed sprint. Character map decoding was improved
@@ -1428,7 +1428,7 @@ import hooks and now also works for packages stored in ZIP-format archives.
included in the \file{Tools/pybench} directory. The pybench suite is
an improvement on the commonly used \file{pystone.py} program because
pybench provides a more detailed measurement of the interpreter's
-performance. It times particular operations such as function calls,
+speed. It times particular operations such as function calls,
tuple slicing, method lookups, and numeric operations, instead of
performing many different operations and reducing the result to a
single number as \file{pystone.py} does.