[pypy-svn] rev 779 - pypy/trunk/src/pypy/interpreter

mwh at codespeak.net mwh at codespeak.net
Sat Jun 7 20:30:35 CEST 2003


Author: mwh
Date: Sat Jun  7 20:30:35 2003
New Revision: 779

Modified:
   pypy/trunk/src/pypy/interpreter/opcode.py
Log:
it's called import_all_from in opcode_app.py, not import_star...


Modified: pypy/trunk/src/pypy/interpreter/opcode.py
==============================================================================
--- pypy/trunk/src/pypy/interpreter/opcode.py	(original)
+++ pypy/trunk/src/pypy/interpreter/opcode.py	Sat Jun  7 20:30:35 2003
@@ -552,7 +552,7 @@
 
 def IMPORT_STAR(f):
     w_module = f.valuestack.pop()
-    f.space.gethelper(appfile).call("import_star", [w_module, f.w_locals])
+    f.space.gethelper(appfile).call("import_all_from", [w_module, f.w_locals])
 
 def IMPORT_FROM(f, nameindex):
     name = f.getname(nameindex)


More information about the Pypy-commit mailing list