Author: Armin Rigo <[email protected]> Branch: Changeset: r2933:93fa52b7eed3 Date: 2017-05-29 18:04 +0200 http://bitbucket.org/cffi/cffi/changeset/93fa52b7eed3/
Log: tweaks diff --git a/demo/xclient_build.py b/demo/xclient_build.py --- a/demo/xclient_build.py +++ b/demo/xclient_build.py @@ -22,4 +22,4 @@ """, libraries=['X11']) if __name__ == '__main__': - ffi.compile() + ffi.compile(verbose=True) diff --git a/doc/source/ref.rst b/doc/source/ref.rst --- a/doc/source/ref.rst +++ b/doc/source/ref.rst @@ -73,8 +73,8 @@ ++++++++++++++++++++++++++++ **ffi.errno**: the value of ``errno`` received from the most recent C call -in this thread, and passed to the following C call. (This is a read-write -property.) +in this thread, and passed to the following C call. (This is a thread-local +read-write property.) **ffi.getwinerror(code=-1)**: on Windows, in addition to ``errno`` we also save and restore the ``GetLastError()`` value across function _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
