Author: Armin Rigo <[email protected]> Branch: Changeset: r752:2dd19cad0ee3 Date: 2012-07-31 23:15 +0200 http://bitbucket.org/cffi/cffi/changeset/2dd19cad0ee3/
Log: Document the GIL release. diff --git a/doc/source/index.rst b/doc/source/index.rst --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -929,7 +929,7 @@ | union | | | and read/write | | | | | struct fields | +---------------+------------------------+ +----------------+ -| function | same as pointers | | call | +| function | same as pointers | | call (**) | | pointers | | | | +---------------+------------------------+------------------+----------------+ | arrays | a list or tuple of | a <cdata> | len(), iter(), | @@ -974,6 +974,9 @@ actually modify the array of characters passed in, and so passes directly a pointer inside the Python string object. +.. versionchaned:: 0.3 + (**) C function calls are now done with the GIL released. + Reference: verifier ------------------- _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
