Author: Armin Rigo <[email protected]> Branch: Changeset: r2687:ab0396f739ff Date: 2016-05-07 09:22 +0200 http://bitbucket.org/cffi/cffi/changeset/ab0396f739ff/
Log: Fix the next version number (not for immediate release!) diff --git a/doc/source/ref.rst b/doc/source/ref.rst --- a/doc/source/ref.rst +++ b/doc/source/ref.rst @@ -321,7 +321,7 @@ **ffi.gc(ptr, None)**: removes the ownership on a object returned by a regular call to ``ffi.gc``, and no destructor will be called when it is garbage-collected. The object is modified in-place, and the -function returns ``None``. +function returns ``None``. *New in version 1.7: ffi.gc(ptr, None)* Note that this should be avoided for large memory allocations or for limited resources. This is particularly true on PyPy: its GC does diff --git a/doc/source/whatsnew.rst b/doc/source/whatsnew.rst --- a/doc/source/whatsnew.rst +++ b/doc/source/whatsnew.rst @@ -3,8 +3,10 @@ ====================== -v1.next -======= +v1.7 +==== + +(NOT RELEASED YET) * ``ffi.gc(p, None)`` removes the destructor on an object previously created by another call to ``ffi.gc()`` _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
