From 292a069b88b72d910dee2e70a98af5d63982ebd1 Mon Sep 17 00:00:00 2001 From: Facundo Batista Date: Fri, 16 Nov 2007 18:41:24 +0000 Subject: [PATCH] Fix for stupid error (I need to remember to do a full 'make clean + make' cycle before the tests...). Sorry. --- Objects/stringlib/find.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/stringlib/find.h b/Objects/stringlib/find.h index 38f13ab66f1..d3490b902fb 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;