[Python-checkins] r59021 - python/trunk/Objects/stringlib/find.h

facundo.batista python-checkins at python.org
Fri Nov 16 19:41:24 CET 2007


Author: facundo.batista
Date: Fri Nov 16 19:41:24 2007
New Revision: 59021

Modified:
   python/trunk/Objects/stringlib/find.h
Log:

Fix for stupid error (I need to remember to do a full 'make clean + make'
cycle before the tests...). Sorry.


Modified: python/trunk/Objects/stringlib/find.h
==============================================================================
--- python/trunk/Objects/stringlib/find.h	(original)
+++ python/trunk/Objects/stringlib/find.h	Fri Nov 16 19:41:24 2007
@@ -117,7 +117,7 @@
 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;


More information about the Python-checkins mailing list