summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/list
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-09-04 22:19:18 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-09-04 22:19:18 (GMT)
commit06d2e1af3579f6a698a84b81dfda0bacb6263f7d (patch)
tree81882308f84c962886979dc619cd2454f6874529 /Mac/Modules/list
parentd157b3795b24b0fca2f75bfee4ac09c64a7b2f40 (diff)
downloadcpython-06d2e1af3579f6a698a84b81dfda0bacb6263f7d.zip
cpython-06d2e1af3579f6a698a84b81dfda0bacb6263f7d.tar.gz
cpython-06d2e1af3579f6a698a84b81dfda0bacb6263f7d.tar.bz2
Regenerated without default int return types.
Diffstat (limited to 'Mac/Modules/list')
-rw-r--r--Mac/Modules/list/_Listmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/list/_Listmodule.c b/Mac/Modules/list/_Listmodule.c
index 950a666..6b74bcc 100644
--- a/Mac/Modules/list/_Listmodule.c
+++ b/Mac/Modules/list/_Listmodule.c
@@ -85,7 +85,7 @@ PyObject *ListObj_New(ListHandle itself)
it->ob_must_be_disposed = 1;
return (PyObject *)it;
}
-ListObj_Convert(PyObject *v, ListHandle *p_itself)
+int ListObj_Convert(PyObject *v, ListHandle *p_itself)
{
if (!ListObj_Check(v))
{