summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-10-22 10:46:18 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2006-10-22 10:46:18 (GMT)
commit98f0d14bd9f0614e799a17aa44070e7b3b13402c (patch)
tree9654e058107d3fea15c515294ca7755796ebb29d
parent10168f25ad7d9ea3b4726912584076c4cf05f8cd (diff)
downloadcpython-98f0d14bd9f0614e799a17aa44070e7b3b13402c.zip
cpython-98f0d14bd9f0614e799a17aa44070e7b3b13402c.tar.gz
cpython-98f0d14bd9f0614e799a17aa44070e7b3b13402c.tar.bz2
Patch #1580872: Remove duplicate declaration of PyCallable_Check.
Will backport to 2.5.
-rw-r--r--Include/abstract.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Include/abstract.h b/Include/abstract.h
index 9b0b3f0..14510c6 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.