[pypy-svn] r64366 - pypy/trunk/pypy/rlib

iko at codespeak.net iko at codespeak.net
Sun Apr 19 15:08:19 CEST 2009


Author: iko
Date: Sun Apr 19 15:08:18 2009
New Revision: 64366

Modified:
   pypy/trunk/pypy/rlib/streamio.py
Log:
add missing imports



Modified: pypy/trunk/pypy/rlib/streamio.py
==============================================================================
--- pypy/trunk/pypy/rlib/streamio.py	(original)
+++ pypy/trunk/pypy/rlib/streamio.py	Sun Apr 19 15:08:18 2009
@@ -159,6 +159,9 @@
 
 if sys.platform == "win32":
     from pypy.rlib import rwin32
+    from pypy.translator.tool.cbuild import ExternalCompilationInfo
+    from pypy.rpython.lltypesystem import rffi
+
     _eci = ExternalCompilationInfo()
     _get_osfhandle = rffi.llexternal('_get_osfhandle', [rffi.INT], rffi.LONG,
                                      compilation_info=_eci)



More information about the Pypy-commit mailing list