[pypy-svn] r75861 - pypy/branch/fast-ctypes/pypy/module/jitffi

getxsick at codespeak.net getxsick at codespeak.net
Mon Jul 5 21:57:16 CEST 2010


Author: getxsick
Date: Mon Jul  5 21:57:14 2010
New Revision: 75861

Modified:
   pypy/branch/fast-ctypes/pypy/module/jitffi/interp_jitffi.py
Log:
use correct name of the class


Modified: pypy/branch/fast-ctypes/pypy/module/jitffi/interp_jitffi.py
==============================================================================
--- pypy/branch/fast-ctypes/pypy/module/jitffi/interp_jitffi.py	(original)
+++ pypy/branch/fast-ctypes/pypy/module/jitffi/interp_jitffi.py	Mon Jul  5 21:57:14 2010
@@ -51,7 +51,7 @@
 
 def W_LibHandler___new__(space, w_type, name):
     try:
-        return space.wrap(W_Lib(space, name))
+        return space.wrap(W_LibHandler(space, name))
     except OSError, e:
         raise wrap_oserror(space, e)
 



More information about the Pypy-commit mailing list