added PyUnicode_FromOrdinal() to unicode.pxd
authorStefan Behnel <scoder@users.berlios.de>
Thu, 22 Apr 2010 11:03:14 +0000 (13:03 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Thu, 22 Apr 2010 11:03:14 +0000 (13:03 +0200)
Cython/Includes/cpython/unicode.pxd

index debb37ef57454656b56cc1f90855d7839c98f10c..d243679021da9c2e5d1aff031d6a0947a4ebc4c9 100644 (file)
@@ -94,7 +94,7 @@ cdef extern from *:
     # The ordinal must be in range(0x10000) on narrow Python builds
     # (UCS2), and range(0x110000) on wide builds (UCS4). A ValueError
     # 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
     # Py_UNICODE buffer, NULL if unicode is not a Unicode object.