diff options
Diffstat (limited to 'Objects/stringobject.c')
-rw-r--r-- | Objects/stringobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c index f585ffc..faaa111 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -3865,7 +3865,7 @@ PyString_Concat(register PyObject **pv, register PyObject *w) return; } v = string_concat((PyStringObject *) *pv, w); - Py_SETREF(*pv, v); + Py_XSETREF(*pv, v); } void @@ -4750,7 +4750,7 @@ PyString_InternInPlace(PyObject **p) t = PyDict_GetItem(interned, (PyObject *)s); if (t) { Py_INCREF(t); - Py_SETREF(*p, t); + Py_XSETREF(*p, t); return; } |