projects
/
platform
/
upstream
/
python-cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5a8e02a
)
fix typo
author
Stefan Behnel
<stefan_ml@behnel.de>
Wed, 20 Feb 2013 09:26:00 +0000
(10:26 +0100)
committer
Stefan Behnel
<stefan_ml@behnel.de>
Wed, 20 Feb 2013 09:26:00 +0000
(10:26 +0100)
Cython/Utility/StringTools.c
patch
|
blob
|
history
diff --git
a/Cython/Utility/StringTools.c
b/Cython/Utility/StringTools.c
index
1407849
..
8b6168f
100644
(file)
--- a/
Cython/Utility/StringTools.c
+++ b/
Cython/Utility/StringTools.c
@@
-407,6
+407,6
@@
static CYTHON_INLINE PyObject* __Pyx_PyUnicode_Substring(
return PyUnicode_FromKindAndData(PyUnicode_KIND(text),
PyUnicode_1BYTE_DATA(text) + start*PyUnicode_KIND(text), stop-start);
#else
- PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(text)+start, stop-start)
+ PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(text)+start, stop-start)
;
#endif
}