[Python-checkins] cpython: Document speedup in whatsnew

christian.heimes python-checkins at python.org
Sun Oct 13 03:10:14 CEST 2013


http://hg.python.org/cpython/rev/9c5236d3ad75
changeset:   86279:9c5236d3ad75
user:        Christian Heimes <christian at cheimes.de>
date:        Sun Oct 13 03:10:06 2013 +0200
summary:
  Document speedup in whatsnew

files:
  Doc/whatsnew/3.4.rst |  11 +++++++++++
  1 files changed, 11 insertions(+), 0 deletions(-)


diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -506,6 +506,17 @@
 
   (Contributed by Raymond Hettinger in :issue"`18771`.)
 
+* The interpreter starts about 30% faster. A couple of measures lead to the
+  speedup. The interpreter loads less modules on startup, e.g. the :mod:`re`,
+  :mod:`collections` and :mod:`locale` modules and their dependencies are no
+  longer imported by default. The marshal module has been improved to load
+  compiled Python code faster.
+
+  (Contributed by Antoine Pitrou, Christian Heimes and Victor Stinner in
+  :issue:`19219`, :issue:`19218`, :issue:`19209`, :issue:`19205` and
+  :issue:`9548`)
+
+
 
 Build and C API Changes
 =======================

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list