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 14b575f commit 9e74374Copy full SHA for 9e74374
1 file changed
Python/optimizer_bytecodes.c
@@ -948,14 +948,15 @@ dummy_func(void) {
948
list = sym_new_type(ctx, &PyList_Type);
949
}
950
951
- op(_BUILD_MAP, (values[oparg*2] -- map)) {
952
- map = sym_new_type(ctx, &PyDict_Type);
953
- }
954
955
op(_BUILD_SLICE, (values[oparg] -- slice)) {
956
slice = sym_new_type(ctx, &PySlice_Type);
957
958
+ op(_BUILD_MAP, (values[oparg*2] -- map)) {
+ map = sym_new_type(ctx, &PyDict_Type);
+ }
959
+
960
op(_BUILD_STRING, (values[oparg] -- str)) {
961
str = sym_new_type(ctx, &PyUnicode_Type);
962
0 commit comments