[Python-checkins] cpython: whatsnew: Windows uses VirtualAlloc, --version goes to stdout.

r.david.murray python-checkins at python.org
Sat Feb 22 22:34:46 CET 2014


http://hg.python.org/cpython/rev/fc089cf0cf32
changeset:   89325:fc089cf0cf32
user:        R David Murray <rdmurray at bitdance.com>
date:        Sat Feb 22 15:35:37 2014 -0500
summary:
  whatsnew: Windows uses VirtualAlloc, --version goes to stdout.

files:
  Doc/whatsnew/3.4.rst |  9 +++++++++
  1 files changed, 9 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
@@ -1422,6 +1422,7 @@
   (Contributed by Ysj Ray and Victor Stinner in :issue:`7330`.)
 
 
+.. _other-improvements-3.4:
 
 Other Improvements
 ------------------
@@ -1510,6 +1511,10 @@
 * :func:`html.escape` is now 10x faster.  (Contributed by Matt Bryant in
   :issue:`18020`.)
 
+* On Windows, the native ``VirtualAlloc`` is now used instead of the CRT
+  ``malloc`` in ``obmalloc``.  Artificial benchmarks show about a 3% memory
+  savings.
+
 
 Deprecated
 ==========
@@ -1683,6 +1688,10 @@
   CPython interpreter is now off by default.  It can be re-enabled using the
   ``-X showrefcount`` option. (Contributed by Ezio Melotti in :issue:`17323`.)
 
+* The python command and most stdlib scripts (as well as :mod:`argparse`) now
+  output ``--version`` information to ``stdout`` instead of ``stderr`` (for
+  issue list see :ref:`other-improvements-3.4` above).
+
 
 Changes in the Python API
 -------------------------

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


More information about the Python-checkins mailing list