Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r84469:ee18c48ffd93
Date: 2016-05-15 16:44 +0200
http://bitbucket.org/pypy/pypy/changeset/ee18c48ffd93/

Log:    Merged in sergem/pypy/syntax_fix (pull request #451)

        fixed compilation error due to wrong varible name

diff --git a/pypy/module/imp/importing.py b/pypy/module/imp/importing.py
--- a/pypy/module/imp/importing.py
+++ b/pypy/module/imp/importing.py
@@ -591,7 +591,7 @@
 def load_c_extension(space, filename, modulename):
     from pypy.module.cpyext.api import load_extension_module
     log_pyverbose(space, 1, "import %s # from %s\n" %
-                  (modulename, pathname))
+                  (modulename, filename))
     load_extension_module(space, filename, modulename)
     # NB. cpyext.api.load_extension_module() can also delegate to _cffi_backend
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to