From: Martin v. Löwis Date: Sun, 22 Oct 2006 10:46:18 +0000 (+0000) Subject: Patch #1580872: Remove duplicate declaration of PyCallable_Check. X-Git-Tag: v2.6a1~2540 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=98f0d14bd9f0614e799a17aa44070e7b3b13402c;p=thirdparty%2FPython%2Fcpython.git Patch #1580872: Remove duplicate declaration of PyCallable_Check. Will backport to 2.5. --- diff --git a/Include/abstract.h b/Include/abstract.h index 9b0b3f0b1860..14510c6ab7df 100644 --- a/Include/abstract.h +++ b/Include/abstract.h @@ -288,9 +288,10 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/ */ + /* Declared elsewhere + PyAPI_FUNC(int) PyCallable_Check(PyObject *o); - /* Determine if the object, o, is callable. Return 1 if the object is callable and 0 otherwise.