summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2014-02-13 08:05:44 +0100
committerStefan Behnel <stefan_ml@behnel.de>2014-02-13 08:05:44 +0100
commit3a6674df273819c825da3991660d482900f3ec3b (patch)
tree25599e08b301b4f91c2f3de54d1567a78e84a4c0
parent05745ae67249f2a8e2d517325a6a4d9017f199ed (diff)
parentdd5f79e069a0c3c8963ff4c69297aed2a107308a (diff)
downloadcython-3a6674df273819c825da3991660d482900f3ec3b.tar.gz
merge 0.20.x branch into master
-rw-r--r--Cython/Utility/StringTools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Utility/StringTools.c b/Cython/Utility/StringTools.c
index 9af45aaa8..38f20db4e 100644
--- a/Cython/Utility/StringTools.c
+++ b/Cython/Utility/StringTools.c
@@ -715,7 +715,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyBytes_Join(PyObject* sep, PyObject* value
#if !CYTHON_COMPILING_IN_CPYTHON
static CYTHON_INLINE PyObject* __Pyx_PyBytes_Join(PyObject* sep, PyObject* values) {
- return PyObject_CallMethodObjArgs(sep, PYIDENT("join"), values, NULL)
+ return PyObject_CallMethodObjArgs(sep, PYIDENT("join"), values, NULL);
}
#endif