[pypy-svn] r25358 - pypy/branch/explicit-exceptions/translator/c

mwh at codespeak.net mwh at codespeak.net
Wed Apr 5 13:13:08 CEST 2006


Author: mwh
Date: Wed Apr  5 13:13:04 2006
New Revision: 25358

Modified:
   pypy/branch/explicit-exceptions/translator/c/extfunc.py
Log:
merging of http://codespeak.net/svn/pypy/dist/pypy/translator/c/extfunc.py
revisions 24785 to 25354:

    ------------------------------------------------------------------------
    r25261 | nik | 2006-04-03 17:24:29 +0200 (Mon, 03 Apr 2006) | 2 lines
    
    fix some references to rlist that i forgot in the last checkin.
    
    ------------------------------------------------------------------------


Modified: pypy/branch/explicit-exceptions/translator/c/extfunc.py
==============================================================================
--- pypy/branch/explicit-exceptions/translator/c/extfunc.py	(original)
+++ pypy/branch/explicit-exceptions/translator/c/extfunc.py	Wed Apr  5 13:13:04 2006
@@ -3,7 +3,8 @@
 from pypy.rpython.lltypesystem import lltype
 from pypy.translator.c.support import cdecl
 from pypy.rpython.rstr import STR
-from pypy.rpython import rlist, rstr
+from pypy.rpython import rstr
+from pypy.rpython.lltypesystem import rlist
 from pypy.rpython.module import ll_os, ll_time, ll_math, ll_strtod
 from pypy.rpython.module import ll_stackless, ll_stack
 from pypy.module.thread.rpython import ll_thread



More information about the Pypy-commit mailing list