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

afa at codespeak.net afa at codespeak.net
Thu Apr 29 16:07:35 CEST 2010


Author: afa
Date: Thu Apr 29 16:07:34 2010
New Revision: 74222

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/funcobject.py
Log:
Fix import


Modified: pypy/branch/cpython-extension/pypy/module/cpyext/funcobject.py
==============================================================================
--- pypy/branch/cpython-extension/pypy/module/cpyext/funcobject.py	(original)
+++ pypy/branch/cpython-extension/pypy/module/cpyext/funcobject.py	Thu Apr 29 16:07:34 2010
@@ -2,7 +2,8 @@
 from pypy.module.cpyext.api import (
     PyObjectFields, generic_cpy_call,
     cpython_api, bootstrap_function, cpython_struct, build_type_checkers)
-from pypy.module.cpyext.pyobject import PyObject, make_ref, from_ref, Py_DecRef, make_typedescr
+from pypy.module.cpyext.pyobject import (
+    PyObject, make_ref, from_ref, Py_DecRef, make_typedescr, register_container)
 from pypy.interpreter.function import Function, Method
 
 PyFunctionObjectStruct = lltype.ForwardReference()



More information about the Pypy-commit mailing list