[pypy-commit] pypy release-2.2.x: Updates

arigo noreply at buildbot.pypy.org
Thu Nov 14 09:17:03 CET 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: release-2.2.x
Changeset: r68015:8eb5b5ac4bba
Date: 2013-11-14 09:16 +0100
http://bitbucket.org/pypy/pypy/changeset/8eb5b5ac4bba/

Log:	Updates

diff --git a/pypy/doc/release-2.2.0.rst b/pypy/doc/release-2.2.0.rst
--- a/pypy/doc/release-2.2.0.rst
+++ b/pypy/doc/release-2.2.0.rst
@@ -63,22 +63,25 @@
 
 * NumPy has been split: now PyPy only contains the core module, called
   ``_numpypy``.  The ``numpy`` module itself has been moved to
-  ``https://bitbucket.org/pypy/numpy``.  You need to install it
-  separately in a virtualenv with ``pip install
-  git+https://bitbucket.org/pypy/numpy.git``.
+  ``https://bitbucket.org/pypy/numpy`` and ``numpypy`` disappeared.
+  You need to install NumPy separately with a virtualenv:
+  ``pip install git+https://bitbucket.org/pypy/numpy.git``;
+  or by directly doing
+  ``git clone https://bitbucket.org/pypy/numpy.git``,
+  ``cd numpy``, ``python setup.py install``.
 
 * non-inlined calls have less overhead
 
 * Things that use ``sys.set_trace`` are now JITted (like coverage)
 
-* JSON encoding is faster
+* JSON encoding used to be very fast, now decoding is as well
 
 * various buffer copying methods experience speedups (like list-of-ints to
   ``int[]`` buffer from cffi)
 
-* We finally wrote all the missing ``os.xxx()`` functions.  There are
-  a lot of strange ones that nobody ever heard about, except those who
-  really need them.
+* We finally wrote (hopefully) all the missing ``os.xxx()`` functions,
+  including ``os.startfile()`` on Windows and a handful of rare ones
+  on Posix.
 
 * numpy has a rudimentary C API that cooperates with ``cpyext``
 


More information about the pypy-commit mailing list