Unicode versions of '_Concat' etc have different sigs. Make them the same here...
| 743 | // Unicode versions of '_Concat' etc have different sigs. Make them the |
| 744 | // same here... |
| 745 | void PyWinCoreString_Concat(register PyObject **pv, register PyObject *w) |
| 746 | { |
| 747 | if (!w) { // hrm - string version doesn't do this, but I saw PyObject_Repr() return NULL... |
| 748 | Py_XDECREF(*pv); |
| 749 | *pv = NULL; |
| 750 | return; |
| 751 | } |
| 752 | PyObject *tmp = PyUnicode_Concat(*pv, w); |
| 753 | Py_DECREF(*pv); |
| 754 | *pv = tmp; |
| 755 | } |
| 756 | |
| 757 | void PyWinCoreString_ConcatAndDel(register PyObject **pv, register PyObject *w) |
| 758 | { |
no outgoing calls
no test coverage detected