diff options
author | Facundo Batista <facundobatista@gmail.com> | 2007-11-16 18:41:24 (GMT) |
---|---|---|
committer | Facundo Batista <facundobatista@gmail.com> | 2007-11-16 18:41:24 (GMT) |
commit | 292a069b88b72d910dee2e70a98af5d63982ebd1 (patch) | |
tree | 25aff79b4e8e5db9c1aded9c07037e7d0a27bd0d | |
parent | 57d5669f4be86fcaf21f95436fcd5142ffe5efae (diff) | |
download | cpython-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.
-rw-r--r-- | Objects/stringlib/find.h | 2 |
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; |