Skip to content

Commit 6705584

Browse files
committed
Fix review idea
Signed-off-by: Manjusaka <me@manjusaka.me>
1 parent 429a534 commit 6705584

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/optimizer_bytecodes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -928,7 +928,7 @@ dummy_func(void) {
928928
}
929929

930930
op(_BUILD_MAP, (values[oparg*2] -- map)) {
931-
map = sym_new_type(ctx, &PyMap_Type);
931+
map = sym_new_type(ctx, &PyDict_Type);
932932
}
933933

934934
op(_UNPACK_SEQUENCE_TWO_TUPLE, (seq -- val1, val0)) {

0 commit comments

Comments
 (0)