[Python-checkins] r52417 - python/branches/release25-maint/Include/abstract.h

martin.v.loewis python-checkins at python.org
Sun Oct 22 12:47:29 CEST 2006


Author: martin.v.loewis
Date: Sun Oct 22 12:47:28 2006
New Revision: 52417

Modified:
   python/branches/release25-maint/Include/abstract.h
Log:
Patch #1580872: Remove duplicate declaration of PyCallable_Check.


Modified: python/branches/release25-maint/Include/abstract.h
==============================================================================
--- python/branches/release25-maint/Include/abstract.h	(original)
+++ python/branches/release25-maint/Include/abstract.h	Sun Oct 22 12:47:28 2006
@@ -288,9 +288,10 @@
 
        */
 
+       /* 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.
 


More information about the Python-checkins mailing list