[pypy-svn] r64953 - pypy/branch/pyjitpl5/pypy/annotation

antocuni at codespeak.net antocuni at codespeak.net
Fri May 1 19:36:57 CEST 2009


Author: antocuni
Date: Fri May  1 19:36:56 2009
New Revision: 64953

Modified:
   pypy/branch/pyjitpl5/pypy/annotation/unaryop.py
Log:
(arigo) kill two useless lines


Modified: pypy/branch/pyjitpl5/pypy/annotation/unaryop.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/annotation/unaryop.py	(original)
+++ pypy/branch/pyjitpl5/pypy/annotation/unaryop.py	Fri May  1 19:36:56 2009
@@ -783,8 +783,6 @@
         args_s, kwds_s = args.unpack()
         if kwds_s:
             raise Exception("keyword arguments to call to a low-level bound method")
-        info = 'argument to ll bound method call'
-        llargs = [annotation_to_lltype(s_arg,info)._defl() for s_arg in args_s]
         inst = m.ootype._example()
         _, meth = ootype.typeOf(inst)._lookup(m.name)
         METH = ootype.typeOf(meth)



More information about the Pypy-commit mailing list