MCPcopy Create free account
hub / github.com/numpy/numpy / PyUnicode_ConcatAndDel

Function PyUnicode_ConcatAndDel

numpy/core/include/numpy/npy_3kcompat.h:191–196  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

189
190
191static inline void
192PyUnicode_ConcatAndDel(PyObject **left, PyObject *right)
193{
194 Py_SETREF(*left, PyUnicode_Concat(*left, right));
195 Py_DECREF(right);
196}
197
198static inline void
199PyUnicode_Concat2(PyObject **left, PyObject *right)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected