diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-10-22 10:47:28 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-10-22 10:47:28 +0000 |
commit | e67b3497c95c7ce869f8d4f25934d57f56fb2557 (patch) | |
tree | 2a4006037129f3b782853ec306b299ba6fbf92e4 | |
parent | b1a11c54eab65ffdc37ea9aef5ad6b3f8b2b646e (diff) | |
download | cpython-git-e67b3497c95c7ce869f8d4f25934d57f56fb2557.tar.gz |
Patch #1580872: Remove duplicate declaration of PyCallable_Check.
-rw-r--r-- | Include/abstract.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Include/abstract.h b/Include/abstract.h index 9b0b3f0b18..14510c6ab7 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. |