We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 780aac9 commit 2c3f72fCopy full SHA for 2c3f72f
pypy/interpreter/pyopcode.py
@@ -971,6 +971,7 @@ def BUILD_TUPLE(self, itemcount):
971
w_tuple = self.space.newtuple(items)
972
self.pushvalue(w_tuple)
973
974
+ @warmup_critical_function
975
def BUILD_LIST(self, itemcount):
976
items = self.popvalues_mutable(itemcount)
977
w_list = self.space.newlist(items)
@@ -990,6 +991,7 @@ def BUILD_LIST_FROM_ARG(self):
990
991
self.pushvalue(space.newlist([], sizehint=length_hint))
992
self.pushvalue(last_val)
993
994
995
@always_inline
996
def LOAD_ATTR(self, nameindex):
997
"obj.attributename"
0 commit comments