Author: Armin Rigo <[email protected]> Branch: Changeset: r2108:eef5283966de Date: 2015-05-26 18:56 +0200 http://bitbucket.org/cffi/cffi/changeset/eef5283966de/
Log: Document diff --git a/doc/source/whatsnew.rst b/doc/source/whatsnew.rst --- a/doc/source/whatsnew.rst +++ b/doc/source/whatsnew.rst @@ -3,6 +3,15 @@ ====================== +1.0.4 +===== + +* ffi.addressof(lib, "func_name") now returns a regular cdata object + of type "pointer to function". You can use it on any function from a + library in API mode (in ABI mode, all functions are already regular + cdata objects). To support this, you need to recompile your cffi + modules. + 1.0.3 ===== _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
