[pypy-svn] rev 477 - pypy/trunk/src/pypy/interpreter/test

alex at codespeak.net alex at codespeak.net
Mon May 26 19:10:18 CEST 2003


Author: alex
Date: Mon May 26 19:10:16 2003
New Revision: 477

Modified:
   pypy/trunk/src/pypy/interpreter/test/test_extmodule.py
Log:
added a magic import to make others work



Modified: pypy/trunk/src/pypy/interpreter/test/test_extmodule.py
==============================================================================
--- pypy/trunk/src/pypy/interpreter/test/test_extmodule.py	(original)
+++ pypy/trunk/src/pypy/interpreter/test/test_extmodule.py	Mon May 26 19:10:16 2003
@@ -2,6 +2,9 @@
 import testsupport
 from pypy.interpreter import unittest_w
 
+# need pypy.module.builtin first to make other imports work (???)
+from pypy.module import builtin
+
 from pypy.interpreter import extmodule
 from pypy.objspace import trivial
 


More information about the Pypy-commit mailing list