We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdba96c commit 14b575fCopy full SHA for 14b575f
Python/optimizer_bytecodes.c
@@ -940,7 +940,9 @@ dummy_func(void) {
940
res = sym_new_const(ctx, Py_True);
941
}
942
943
-
+ op(_BUILD_TUPLE, (values[oparg] -- tup)) {
944
+ tup = sym_new_tuple(ctx, oparg, values);
945
+ }
946
947
op(_BUILD_LIST, (values[oparg] -- list)) {
948
list = sym_new_type(ctx, &PyList_Type);
@@ -954,10 +956,6 @@ dummy_func(void) {
954
956
slice = sym_new_type(ctx, &PySlice_Type);
955
957
958
- op(_BUILD_TUPLE, (values[oparg] -- tup)) {
- tup = sym_new_tuple(ctx, oparg, values);
959
- }
960
961
op(_BUILD_STRING, (values[oparg] -- str)) {
962
str = sym_new_type(ctx, &PyUnicode_Type);
963
0 commit comments