Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Python/compile.c
Original file line number Diff line number Diff line change
Expand Up @@ -8554,6 +8554,8 @@ assemble(struct compiler *c, int addNone)
{
PyCodeObject *co = NULL;
PyObject *consts = NULL;
struct assembler a;
memset(&a, 0, sizeof(struct assembler));

int code_flags = compute_code_flags(c);
if (code_flags < 0) {
Expand Down Expand Up @@ -8683,7 +8685,6 @@ assemble(struct compiler *c, int addNone)


/* Create assembler */
struct assembler a;
if (!assemble_init(&a, c->u->u_firstlineno))
goto error;

Expand Down