diff options
| author | Armin Rigo <arigo@tunes.org> | 2012-07-31 23:15:53 +0200 |
|---|---|---|
| committer | Armin Rigo <arigo@tunes.org> | 2012-07-31 23:15:53 +0200 |
| commit | 4629dfce64e49392d7d48f2eea9498d9228b97bb (patch) | |
| tree | 41f1c84c400867ec5304141a1f01c30550e55d6e /doc/source | |
| parent | a76f2fea51ae32b7bf8f3c56425e068cd6dddf7f (diff) | |
| download | cffi-4629dfce64e49392d7d48f2eea9498d9228b97bb.tar.gz | |
Document the GIL release.
Diffstat (limited to 'doc/source')
| -rw-r--r-- | doc/source/index.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/source/index.rst b/doc/source/index.rst index ae399c6..0a58628 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -929,7 +929,7 @@ allowed. | 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 @@ with a ``char *`` argument to which you pass a Python string will not 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 ------------------- |
