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

getxsick at codespeak.net getxsick at codespeak.net
Sat Jul 31 19:18:33 CEST 2010


Author: getxsick
Date: Sat Jul 31 19:18:32 2010
New Revision: 76421

Modified:
   pypy/branch/fast-ctypes/pypy/module/jitffi/interp_jitffi.py
Log:
comment out unused code


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	Sat Jul 31 19:18:32 2010
@@ -92,11 +92,11 @@
                 i += 1
         return self.rget.call(space.wrap)
 
-def W_Get___new__(space, w_type, cpu, lib, func, args_type, res_type):
-    try:
-        return space.wrap(W_Get(space, w_type, cpu, lib, func, args_type, res_type))
-    except OSError, e:
-        raise wrap_oserror(space, e)
+#def W_Get___new__(space, w_type, cpu, lib, func, args_type, res_type):
+#    try:
+#        return space.wrap(W_Get(space, w_type, cpu, lib, func, args_type, res_type))
+#    except OSError, e:
+#        raise wrap_oserror(space, e)
 
 W_Get.typedef = TypeDef(
         'Get',



More information about the Pypy-commit mailing list