Skip to content

Commit 95e421c

Browse files
committed
Add blurb entry.
1 parent 7a05eca commit 95e421c

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
Replace two complex bytecodes for building dicts with two simpler ones.
3+
4+
The following bytecodes have been removed:
5+
6+
* BUILD_MAP_UNPACK
7+
* BUILD_MAP_UNPACK_WITH_CALL
8+
9+
The following three bytecodes have been added:
10+
11+
* DICT_MERGE
12+
* DICT_UPDATE

Python/ceval.c

+1
Original file line numberDiff line numberDiff line change
@@ -2827,6 +2827,7 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag)
28272827
goto error;
28282828
}
28292829
Py_DECREF(update);
2830+
PREDICT(CALL_FUNCTION_EX);
28302831
DISPATCH();
28312832
}
28322833

0 commit comments

Comments
 (0)