mirror of
https://github.com/python/cpython.git
synced 2025-12-31 12:33:28 +00:00
GH-134584: Remove redundant refcount from _STORE_ATTR_SLOT (#142729)
This commit is contained in:
parent
f277781bba
commit
bef63d2fb8
9 changed files with 70 additions and 17 deletions
|
|
@ -114,6 +114,12 @@ dummy_func(void) {
|
|||
ss = sub_st;
|
||||
}
|
||||
|
||||
op(_STORE_ATTR_SLOT, (index/1, value, owner -- o)) {
|
||||
(void)index;
|
||||
(void)value;
|
||||
o = owner;
|
||||
}
|
||||
|
||||
op(_STORE_SUBSCR_DICT, (value, dict_st, sub -- st)) {
|
||||
(void)value;
|
||||
st = dict_st;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue