fix typo
authorStefan Behnel <stefan_ml@behnel.de>
Wed, 20 Feb 2013 09:26:00 +0000 (10:26 +0100)
committerStefan Behnel <stefan_ml@behnel.de>
Wed, 20 Feb 2013 09:26:00 +0000 (10:26 +0100)
Cython/Utility/StringTools.c

index 1407849..8b6168f 100644 (file)
@@ -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
 }