[pypy-svn] r62308 - pypy/trunk/pypy/rpython/module

afa at codespeak.net afa at codespeak.net
Sun Mar 1 22:09:24 CET 2009


Author: afa
Date: Sun Mar  1 22:09:22 2009
New Revision: 62308

Modified:
   pypy/trunk/pypy/rpython/module/ll_os_stat.py
Log:
Fix import, seen when running bin/py.py


Modified: pypy/trunk/pypy/rpython/module/ll_os_stat.py
==============================================================================
--- pypy/trunk/pypy/rpython/module/ll_os_stat.py	(original)
+++ pypy/trunk/pypy/rpython/module/ll_os_stat.py	Sun Mar  1 22:09:22 2009
@@ -266,7 +266,7 @@
     # Therefore, we implement our own stat, based on the Win32 API directly.
     from pypy.rpython.tool import rffi_platform as platform
     from pypy.translator.tool.cbuild import ExternalCompilationInfo
-    from rlib import rwin32
+    from pypy.rlib import rwin32
 
     assert len(STAT_FIELDS) == 10    # no extra fields on Windows
 



More information about the Pypy-commit mailing list