Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r80510:452c074c6e37
Date: 2015-11-03 12:24 +0100
http://bitbucket.org/pypy/pypy/changeset/452c074c6e37/

Log:    Merged in Zearin/pypy/Zearin/minor-whatsnewrst-markup-tweaks-
        edited-o-1446387512092 (pull request #352)

        Minor whatsnew.rst markup tweaks (edited online with Bitbucket)

diff --git a/pypy/doc/whatsnew-4.0.0.rst b/pypy/doc/whatsnew-4.0.0.rst
--- a/pypy/doc/whatsnew-4.0.0.rst
+++ b/pypy/doc/whatsnew-4.0.0.rst
@@ -6,12 +6,12 @@
 .. startrev: 3a8f5481dab4
 
 .. branch: keys_with_hash
-Improve the performance of dict.update() and a bunch of methods from
+Improve the performance of ``dict.update()`` and a bunch of methods from
 sets, by reusing the hash value stored in one dict when inspecting
 or changing another dict with that key.
 
 .. branch: optresult-unroll 
-A major refactoring of the ResOperations that kills Box. Also rewrote
+A major refactoring of the ``ResOperations`` that kills Box. Also rewrote
 unrolling to enable future enhancements.  Should improve warmup time
 by 20% or so.
 
@@ -24,7 +24,7 @@
 
 .. branch: gc-more-incremental
 Remove a source of non-incremental-ness in the GC: now
-external_malloc() no longer runs gc_step_until() any more. If there
+``external_malloc()`` no longer runs ``gc_step_until()`` any more. If there
 is a currently-running major collection, we do only so many steps
 before returning. This number of steps depends on the size of the
 allocated object. It is controlled by tracking the general progress
@@ -55,7 +55,7 @@
 floats, cf. issue #2148.
 
 .. branch: cffi-stdcall
-Win32: support '__stdcall' in CFFI.
+Win32: support ``__stdcall`` in CFFI.
 
 .. branch: callfamily
 
@@ -67,19 +67,19 @@
 
 .. branch: type_system-cleanup
 
-Remove some remnants of the old ootypesystem vs lltypesystem dichotomy.
+Remove some remnants of the old ``ootypesystem`` vs ``lltypesystem`` dichotomy.
 
 .. branch: cffi-handle-lifetime
 
-ffi.new_handle() returns handles that work more like CPython's: they
+``ffi.new_handle()`` returns handles that work more like CPython's: they
 remain valid as long as the target exists (unlike the previous
-version, where handles become invalid *before* the __del__ is called).
+version, where handles become invalid *before* the ``__del__`` is called).
 
 .. branch: ufunc-casting
 
-allow automatic casting in ufuncs (and frompypyfunc) to cast the
+allow automatic casting in ufuncs (and ``frompypyfunc``) to cast the
 arguments to the allowed function type declarations, fixes various
-failures in linalg cffi functions
+failures in linalg CFFI functions
 
 .. branch: vecopt
 .. branch: vecopt-merge
@@ -94,4 +94,5 @@
 
 .. branch: lazy-fast2locals
 improve the performance of simple trace functions by lazily calling
-fast2locals and locals2fast only if f_locals is actually accessed.
+``fast2locals`` and ``locals2fast`` only if ``f_locals`` is actually accessed.
+
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to