py_string_str
No overview available.
def py_string_str(
self: PyObject*
) - > string
Returns the string representation of a Python string object, typically used for converting internal string structures to a standard Python string format.
Parameters
| Name | Type | Description |
|---|---|---|
| self | PyObject* | A pointer to the Python string object to be converted. |
Returns
| Type | Description |
|---|---|
string | The underlying character data of the Python string object. |