mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
bpo-33132: Fix more reference counting issues in the compiler. (GH-6323)
This commit is contained in:
parent
5a7092de12
commit
aa8e51f5eb
1 changed files with 2 additions and 4 deletions
|
@ -2843,8 +2843,7 @@ compiler_import_as(struct compiler *c, identifier name, identifier asname)
|
||||||
attr = PyUnicode_Substring(name, pos, (dot != -1) ? dot : len);
|
attr = PyUnicode_Substring(name, pos, (dot != -1) ? dot : len);
|
||||||
if (!attr)
|
if (!attr)
|
||||||
return 0;
|
return 0;
|
||||||
ADDOP_O(c, IMPORT_FROM, attr, names);
|
ADDOP_N(c, IMPORT_FROM, attr, names);
|
||||||
Py_DECREF(attr);
|
|
||||||
if (dot == -1) {
|
if (dot == -1) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -3294,8 +3293,7 @@ compiler_nameop(struct compiler *c, identifier name, expr_context_ty ctx)
|
||||||
"param invalid for local variable");
|
"param invalid for local variable");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
ADDOP_O(c, op, mangled, varnames);
|
ADDOP_N(c, op, mangled, varnames);
|
||||||
Py_DECREF(mangled);
|
|
||||||
return 1;
|
return 1;
|
||||||
case OP_GLOBAL:
|
case OP_GLOBAL:
|
||||||
switch (ctx) {
|
switch (ctx) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue