[pypy-commit] pypy py3.5-ssl: make new parameter optional to fix compression buildbot step

plan_rich pypy.commits at gmail.com
Thu Nov 17 11:12:05 EST 2016


Author: Richard Plangger <planrichi at gmail.com>
Branch: py3.5-ssl
Changeset: r88450:04030a587cc7
Date: 2016-11-17 17:11 +0100
http://bitbucket.org/pypy/pypy/changeset/04030a587cc7/

Log:	make new parameter optional to fix compression buildbot step

diff --git a/pypy/tool/build_cffi_imports.py b/pypy/tool/build_cffi_imports.py
--- a/pypy/tool/build_cffi_imports.py
+++ b/pypy/tool/build_cffi_imports.py
@@ -21,7 +21,7 @@
     "xx": None,    # for testing: 'None' should be completely ignored
     }
 
-def create_cffi_import_libraries(pypy_c, options, basedir, only):
+def create_cffi_import_libraries(pypy_c, options, basedir, only=None):
     from rpython.tool.runsubprocess import run_subprocess
 
     shutil.rmtree(str(join(basedir,'lib_pypy','__pycache__')),


More information about the pypy-commit mailing list