| 189 | |
| 190 | |
| 191 | static inline void |
| 192 | PyUnicode_ConcatAndDel(PyObject **left, PyObject *right) |
| 193 | { |
| 194 | Py_SETREF(*left, PyUnicode_Concat(*left, right)); |
| 195 | Py_DECREF(right); |
| 196 | } |
| 197 | |
| 198 | static inline void |
| 199 | PyUnicode_Concat2(PyObject **left, PyObject *right) |
nothing calls this directly
no outgoing calls
no test coverage detected