| 196 | } |
| 197 | |
| 198 | static inline void |
| 199 | PyUnicode_Concat2(PyObject **left, PyObject *right) |
| 200 | { |
| 201 | Py_SETREF(*left, PyUnicode_Concat(*left, right)); |
| 202 | } |
| 203 | |
| 204 | /* |
| 205 | * PyFile_* compatibility |
nothing calls this directly
no outgoing calls
no test coverage detected