Author: Armin Rigo <[email protected]>
Branch:
Changeset: r2069:1d4eae61e890
Date: 2015-05-20 22:32 +0200
http://bitbucket.org/cffi/cffi/changeset/1d4eae61e890/
Log: Merged in chrippa/cffi/fix-multiple-sources-arguments (pull request
#60)
Fix multiple sources arguments passed to setuptools
diff --git a/cffi/setuptools_ext.py b/cffi/setuptools_ext.py
--- a/cffi/setuptools_ext.py
+++ b/cffi/setuptools_ext.py
@@ -76,7 +76,7 @@
from cffi import recompiler
allsources = ['$PLACEHOLDER']
- allsources.extend(kwds.get('sources', []))
+ allsources.extend(kwds.pop('sources', []))
ext = Extension(name=module_name, sources=allsources, **kwds)
def make_mod(tmpdir):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit