Author: Alex Gaynor <[email protected]>
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()
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to