[pypy-svn] r72772 - pypy/branch/cpython-extension/pypy/module/cpyext

afa at codespeak.net afa at codespeak.net
Wed Mar 24 23:29:17 CET 2010


Author: afa
Date: Wed Mar 24 23:29:15 2010
New Revision: 72772

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/api.py
Log:
Add *all* functions to the exported symbols, even when not renamed


Modified: pypy/branch/cpython-extension/pypy/module/cpyext/api.py
==============================================================================
--- pypy/branch/cpython-extension/pypy/module/cpyext/api.py	(original)
+++ pypy/branch/cpython-extension/pypy/module/cpyext/api.py	Wed Mar 24 23:29:15 2010
@@ -310,6 +310,7 @@
     if rename:
         for name in export_symbols:
             if name.startswith("PyPy"):
+                renamed_symbols.append(name)
                 continue
             if "#" in name:
                 deref = "*"



More information about the Pypy-commit mailing list