Commit 79b5cf11 authored by Raymond Hettinger's avatar Raymond Hettinger

Mention the optimization of list.extend().

parent 70a30e8c
...@@ -267,6 +267,8 @@ yellow 5 ...@@ -267,6 +267,8 @@ yellow 5
use of the underlying system realloc(). List comprehensions also use of the underlying system realloc(). List comprehensions also
benefit. The amount of improvement varies between systems and shows benefit. The amount of improvement varies between systems and shows
the greatest improvement on systems with poor realloc() implementations. the greatest improvement on systems with poor realloc() implementations.
\method{list.extend()} was also optimized and no longer converts its
argument into a temporary list prior to extending the base list.
\item \function{list()}, \function{tuple()}, \function{map()}, \item \function{list()}, \function{tuple()}, \function{map()},
\function{filter()}, and \function{zip()} now run several times \function{filter()}, and \function{zip()} now run several times
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment