[pypy-commit] cffi default: In the setup.py, always import setuptools first on Windows

2018-02-16 Thread arigo
Author: Armin Rigo Branch: Changeset: r3097:b576c88f25f7 Date: 2018-02-16 09:27 +0100 http://bitbucket.org/cffi/cffi/changeset/b576c88f25f7/ Log:In the setup.py, always import setuptools first on Windows diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -2,6 +2,10 @@ import

[pypy-commit] cffi default: Implement ffi.dlclose() for the in-line case

2018-02-16 Thread arigo
Author: Armin Rigo Branch: Changeset: r3098:cdaebfeea0f0 Date: 2018-02-16 09:27 +0100 http://bitbucket.org/cffi/cffi/changeset/cdaebfeea0f0/ Log:Implement ffi.dlclose() for the in-line case diff --git a/c/_cffi_backend.c b/c/_cffi_backend.c --- a/c/_cffi_backend.c +++ b/c/_cffi_backend.c @@

[pypy-commit] cffi default: Revert these small changes

2018-02-16 Thread arigo
Author: Armin Rigo Branch: Changeset: r3099:d7d2eae6f698 Date: 2018-02-16 10:00 +0100 http://bitbucket.org/cffi/cffi/changeset/d7d2eae6f698/ Log:Revert these small changes diff --git a/c/_cffi_backend.c b/c/_cffi_backend.c --- a/c/_cffi_backend.c +++ b/c/_cffi_backend.c @@ -3990,7 +3990,7 @

[pypy-commit] cffi default: More Windows support for ffi.dlopen(), this time the out-of-line version

2018-02-16 Thread arigo
Author: Armin Rigo Branch: Changeset: r3100:5448f4eca09c Date: 2018-02-16 11:22 +0100 http://bitbucket.org/cffi/cffi/changeset/5448f4eca09c/ Log:More Windows support for ffi.dlopen(), this time the out-of-line version diff --git a/c/_cffi_backend.c b/c/_cffi_backend.c --- a/c/_cffi_