summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-10-22 10:47:28 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2006-10-22 10:47:28 (GMT)
commite67b3497c95c7ce869f8d4f25934d57f56fb2557 (patch)
tree2a4006037129f3b782853ec306b299ba6fbf92e4 /Include
parentb1a11c54eab65ffdc37ea9aef5ad6b3f8b2b646e (diff)
downloadcpython-e67b3497c95c7ce869f8d4f25934d57f56fb2557.zip
cpython-e67b3497c95c7ce869f8d4f25934d57f56fb2557.tar.gz
cpython-e67b3497c95c7ce869f8d4f25934d57f56fb2557.tar.bz2
Patch #1580872: Remove duplicate declaration of PyCallable_Check.
Diffstat (limited to 'Include')
-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.