PyUnicodeUCS2_Append

Concat two strings and put the result in *pleft (sets *pleft to NULL on error)

  1. void PyUnicodeUCS2_Append(PyObject** pleft, PyObject* right)
    version(Python_3_0_Or_Later)
    void
    PyUnicodeUCS2_Append
  2. alias PyUnicode_Append = PyUnicodeUCS2_Append

Parameters

pleft
Type: PyObject**

Pointer to left string

right
Type: PyObject*

Right string */ /// Availability: 3.

Meta