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

lucian at codespeak.net lucian at codespeak.net
Fri Mar 26 17:25:37 CET 2010


Author: lucian
Date: Fri Mar 26 17:25:36 2010
New Revision: 72911

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/api.py
Log:
Remove typeobject.c fromt the list of files to be compiled.

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	Fri Mar 26 17:25:36 2010
@@ -501,8 +501,7 @@
     eci = ExternalCompilationInfo(
         include_dirs=include_dirs,
         separate_module_sources=[code],
-        separate_module_files=[include_dir / "typeobject.c",
-                               include_dir / "varargwrapper.c"],
+        separate_module_files=[include_dir / "varargwrapper.c"],
         export_symbols=['pypyAPI'] + export_symbols,
         )
     eci = eci.convert_sources_to_files()



More information about the Pypy-commit mailing list