projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8d0fe22
)
added PyUnicode_FromOrdinal() to unicode.pxd
author
Stefan Behnel
<scoder@users.berlios.de>
Thu, 22 Apr 2010 11:03:14 +0000
(13:03 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Thu, 22 Apr 2010 11:03:14 +0000
(13:03 +0200)
Cython/Includes/cpython/unicode.pxd
patch
|
blob
|
history
diff --git
a/Cython/Includes/cpython/unicode.pxd
b/Cython/Includes/cpython/unicode.pxd
index debb37ef57454656b56cc1f90855d7839c98f10c..d243679021da9c2e5d1aff031d6a0947a4ebc4c9 100644
(file)
--- a/
Cython/Includes/cpython/unicode.pxd
+++ b/
Cython/Includes/cpython/unicode.pxd
@@
-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.