[pypy-svn] r45429 - pypy/dist/pypy/translator/js/modules

fijal at codespeak.net fijal at codespeak.net
Sun Jul 29 18:54:53 CEST 2007


Author: fijal
Date: Sun Jul 29 18:54:52 2007
New Revision: 45429

Modified:
   pypy/dist/pypy/translator/js/modules/dom.py
   pypy/dist/pypy/translator/js/modules/mochikit.py
Log:
Fix imports


Modified: pypy/dist/pypy/translator/js/modules/dom.py
==============================================================================
--- pypy/dist/pypy/translator/js/modules/dom.py	(original)
+++ pypy/dist/pypy/translator/js/modules/dom.py	Sun Jul 29 18:54:52 2007
@@ -21,7 +21,8 @@
 from pypy.rpython.ootypesystem.bltregistry import BasicExternal, MethodDesc
 from pypy.rlib.nonconst import NonConstant
 
-from pypy.rpython.extfunc import genericcallable, register_external
+from pypy.rpython.extfunc import genericcallable
+from pypy.rpython.extfunc import _register_external as register_external
 from xml.dom import minidom
 
 from pypy.annotation.signature import annotation

Modified: pypy/dist/pypy/translator/js/modules/mochikit.py
==============================================================================
--- pypy/dist/pypy/translator/js/modules/mochikit.py	(original)
+++ pypy/dist/pypy/translator/js/modules/mochikit.py	Sun Jul 29 18:54:52 2007
@@ -2,7 +2,8 @@
 """ mochikit wrappers
 """
 
-from pypy.rpython.extfunc import genericcallable, register_external
+from pypy.rpython.extfunc import genericcallable
+from pypy.rpython.extfunc import _register_external as register_external
 from pypy.rpython.ootypesystem.bltregistry import BasicExternal, MethodDesc
 from pypy.translator.js.modules import dom
 



More information about the Pypy-commit mailing list