Commit f0ae7186 authored by Stefan Behnel's avatar Stefan Behnel

added PyUnicode_FromOrdinal() to unicode.pxd

parent 8d0fe227
...@@ -94,7 +94,7 @@ cdef extern from *: ...@@ -94,7 +94,7 @@ cdef extern from *:
# The ordinal must be in range(0x10000) on narrow Python builds # The ordinal must be in range(0x10000) on narrow Python builds
# (UCS2), and range(0x110000) on wide builds (UCS4). A ValueError # (UCS2), and range(0x110000) on wide builds (UCS4). A ValueError
# is raised in case it is not. # is raised in case it is not.
PyObject* PyUnicode_FromOrdinal(int ordinal) object PyUnicode_FromOrdinal(int ordinal)
# Return a read-only pointer to the Unicode object's internal # Return a read-only pointer to the Unicode object's internal
# Py_UNICODE buffer, NULL if unicode is not a Unicode object. # Py_UNICODE buffer, NULL if unicode is not a Unicode object.
......
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