[pypy-commit] pypy default: There's no reason not to inline list.pop

alex_gaynor noreply at buildbot.pypy.org
Mon Jul 11 04:18:32 CEST 2011


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: 
Changeset: r45455:6438187093b6
Date: 2011-07-10 19:18 -0700
http://bitbucket.org/pypy/pypy/changeset/6438187093b6/

Log:	There's no reason not to inline list.pop

diff --git a/pypy/rpython/rlist.py b/pypy/rpython/rlist.py
--- a/pypy/rpython/rlist.py
+++ b/pypy/rpython/rlist.py
@@ -667,7 +667,6 @@
     res = l.ll_getitem_fast(index)
     ll_delitem_nonneg(dum_nocheck, l, index)
     return res
-ll_pop.oopspec = 'list.pop(l, index)'
 
 def ll_reverse(l):
     length = l.ll_length()


More information about the pypy-commit mailing list