1 /*--------------------------
2 * common utility functions
3 *--------------------------
11 extern PyObject
*PLyUnicode_Bytes(PyObject
*unicode
);
12 extern char *PLyUnicode_AsString(PyObject
*unicode
);
14 #if PY_MAJOR_VERSION >= 3
15 extern PyObject
*PLyUnicode_FromString(const char *s
);
16 extern PyObject
*PLyUnicode_FromStringAndSize(const char *s
, Py_ssize_t size
);
19 #endif /* PLPY_UTIL_H */