Skip to content

Commit a8d608d

Browse files
committed
Tweak dummy definitions in bytecodes.c after merge
1 parent f5e1aed commit a8d608d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Python/bytecodes.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,6 @@ do { \
7777
#define NAME_ERROR_MSG \
7878
"name '%.200s' is not defined"
7979

80-
typedef struct {
81-
PyObject *kwnames;
82-
} CallShape;
83-
8480
// Dummy variables for stack effects.
8581
static PyObject *value, *value1, *value2, *left, *right, *res, *sum, *prod, *sub;
8682
static PyObject *container, *start, *stop, *v;
@@ -102,6 +98,8 @@ dummy_func(
10298
binaryfunc binary_ops[]
10399
)
104100
{
101+
_PyInterpreterFrame entry_frame;
102+
105103
switch (opcode) {
106104

107105
/* BEWARE!

0 commit comments

Comments
 (0)