summaryrefslogtreecommitdiffstats
path: root/Modules/_struct.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-12-27 10:38:28 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-12-27 10:38:28 (GMT)
commitbdb908ea5466bfa09869fd2e1e7f3b17fe0fb2ea (patch)
treeab1e4e4a74bd5cb976d2473b5e76e9ba74b94edb /Modules/_struct.c
parent40005a7807bf2140d045c2bb8b4ef8af1e4770a0 (diff)
parent4a1e70fc31d224786a32f950edaf73c8ea9c194d (diff)
downloadcpython-bdb908ea5466bfa09869fd2e1e7f3b17fe0fb2ea.zip
cpython-bdb908ea5466bfa09869fd2e1e7f3b17fe0fb2ea.tar.gz
cpython-bdb908ea5466bfa09869fd2e1e7f3b17fe0fb2ea.tar.bz2
Issue #20440: Applied yet one patch for using Py_SETREF.
The patch is automatically generated, it replaces the code that uses Py_CLEAR.
Diffstat (limited to 'Modules/_struct.c')
-rw-r--r--Modules/_struct.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/_struct.c b/Modules/_struct.c
index 820e004..02db84e 100644
--- a/Modules/_struct.c
+++ b/Modules/_struct.c
@@ -1437,8 +1437,7 @@ s_init(PyObject *self, PyObject *args, PyObject *kwds)
return -1;
}
- Py_CLEAR(soself->s_format);
- soself->s_format = o_format;
+ Py_SETREF(soself->s_format, o_format);
ret = prepare_s(soself);
return ret;