[pypy-svn] r76323 - pypy/branch/fast-ctypes/pypy/rlib

getxsick at codespeak.net getxsick at codespeak.net
Fri Jul 23 00:13:28 CEST 2010


Author: getxsick
Date: Fri Jul 23 00:13:26 2010
New Revision: 76323

Modified:
   pypy/branch/fast-ctypes/pypy/rlib/rjitffi.py
Log:
use more proper method name


Modified: pypy/branch/fast-ctypes/pypy/rlib/rjitffi.py
==============================================================================
--- pypy/branch/fast-ctypes/pypy/rlib/rjitffi.py	(original)
+++ pypy/branch/fast-ctypes/pypy/rlib/rjitffi.py	Fri Jul 23 00:13:26 2010
@@ -75,7 +75,7 @@
             else:
                 raise ValueError(self.res_type)
 
-            calldescr = self.gen_calldescr()
+            calldescr = self.get_calldescr()
             self.looptoken = LoopToken()
             oplist = [ResOperation(rop.CALL, bargs, bres, descr=calldescr),
                       ResOperation(rop.FINISH, [bres], None,
@@ -86,7 +86,7 @@
             self._cache[key] = self.looptoken
         self.setup_stack()
 
-    def gen_calldescr(self):
+    def get_calldescr(self):
         arg_classes = ''.join(self.args_type)
         gccache = self.cpu.gc_ll_descr
 



More information about the Pypy-commit mailing list