Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Merge branch 'master' into pydict-getitem
  • Loading branch information
serhiy-storchaka committed Feb 14, 2019
commit fe7a98f9fd806c95a0a120b00a375a19269355dc
2 changes: 1 addition & 1 deletion Python/symtable.c
Original file line number Diff line number Diff line change
Expand Up @@ -993,7 +993,7 @@ symtable_add_def_helper(struct symtable *st, PyObject *name, int flag, struct _s

if (!mangled)
return 0;
dict = st->st_cur->ste_symbols;
dict = ste->ste_symbols;
if ((o = PyDict_GetItemWithError(dict, mangled))) {
val = PyLong_AS_LONG(o);
if ((flag & DEF_PARAM) && (val & DEF_PARAM)) {
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.