8000 fix missing initialization · python/cpython@b5de372 · GitHub
[go: up one dir, main page]

Skip to content

Commit b5de372

Browse files
committed
fix missing initialization
1 parent f3340c2 commit b5de372

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Python/symtable.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ ste_new(struct symtable *st, identifier name, _Py_block_ty block,
107107
ste->ste_returns_value = 0;
108108
ste->ste_needs_class_closure = 0;
109109
ste->ste_comp_iter_target = 0;
110+
ste->ste_type_params_in_class = 0;
110111
ste->ste_comp_iter_expr = 0;
111112

112113
ste->ste_symbols = PyDict_New();

0 commit comments

Comments
 (0)
0