Commit 0d3af956 authored by Stefan Behnel's avatar Stefan Behnel

fix typo

parent cf86b64b
...@@ -429,7 +429,7 @@ static CYTHON_INLINE int __Pyx_init_unicode_iteration( ...@@ -429,7 +429,7 @@ static CYTHON_INLINE int __Pyx_init_unicode_iteration(
PyObject* ustring, Py_ssize_t *length, void** data, int *kind) { PyObject* ustring, Py_ssize_t *length, void** data, int *kind) {
#if CYTHON_PEP393_ENABLED #if CYTHON_PEP393_ENABLED
if (unlikely(PyUnicode_READY(ustring) < 0)) return -1; if (unlikely(PyUnicode_READY(ustring) < 0)) return -1;
*kind = PUnicode_KIND(ustring); *kind = PyUnicode_KIND(ustring);
*length = PyUnicode_GET_LENGTH(ustring); *length = PyUnicode_GET_LENGTH(ustring);
*data = PyUnicode_DATA(ustring); *data = PyUnicode_DATA(ustring);
#else #else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment