[pypy-commit] pypy py3.5-ssl: force parameters of create_cffi_import_libraries to str paths

plan_rich pypy.commits at gmail.com
Thu Nov 17 11:15:55 EST 2016


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

Log:	force parameters of create_cffi_import_libraries to str paths

diff --git a/pypy/tool/release/package.py b/pypy/tool/release/package.py
--- a/pypy/tool/release/package.py
+++ b/pypy/tool/release/package.py
@@ -84,7 +84,7 @@
     if not _fake and not pypy_runs(pypy_c):
         raise OSError("Running %r failed!" % (str(pypy_c),))
     if not options.no_cffi:
-        failures = create_cffi_import_libraries(pypy_c, options, basedir)
+        failures = create_cffi_import_libraries(str(pypy_c), options, str(basedir))
         for key, module in failures:
             print >>sys.stderr, """!!!!!!!!!!\nBuilding {0} bindings failed.
                 You can either install development headers package,


More information about the pypy-commit mailing list