summaryrefslogtreecommitdiffstats
path: root/Objects/stringlib
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2007-11-16 18:41:24 (GMT)
committerFacundo Batista <facundobatista@gmail.com>2007-11-16 18:41:24 (GMT)
commit292a069b88b72d910dee2e70a98af5d63982ebd1 (patch)
tree25aff79b4e8e5db9c1aded9c07037e7d0a27bd0d /Objects/stringlib
parent57d5669f4be86fcaf21f95436fcd5142ffe5efae (diff)
downloadcpython-292a069b88b72d910dee2e70a98af5d63982ebd1.zip
cpython-292a069b88b72d910dee2e70a98af5d63982ebd1.tar.gz
cpython-292a069b88b72d910dee2e70a98af5d63982ebd1.tar.bz2
Fix for stupid error (I need to remember to do a full 'make clean + make'
cycle before the tests...). Sorry.
Diffstat (limited to 'Objects/stringlib')
-rw-r--r--Objects/stringlib/find.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/stringlib/find.h b/Objects/stringlib/find.h
index 38f13ab..d3490b9 100644
--- a/Objects/stringlib/find.h
+++ b/Objects/stringlib/find.h
@@ -117,7 +117,7 @@ because it continues living in the caller functions (those functions,
after finishing using the substring, must DECREF it).
*/
-int
+Py_LOCAL_INLINE(int)
_ParseTupleFinds (PyObject *args, PyObject **substring,
Py_ssize_t *start, Py_ssize_t *end) {
PyObject *tmp_substring;