summaryrefslogtreecommitdiffstats
path: root/Mac/Modules
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1999-09-30 11:17:15 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1999-09-30 11:17:15 (GMT)
commit4cc95627814d6c0fbbc973976ef2371bb66b7f7d (patch)
treeae9005cea8e34c6c155d5d804231675983a86aae /Mac/Modules
parentc7fda7e195da7a21f2c97687c8fd8bcc25ef73b5 (diff)
downloadcpython-4cc95627814d6c0fbbc973976ef2371bb66b7f7d.zip
cpython-4cc95627814d6c0fbbc973976ef2371bb66b7f7d.tar.gz
cpython-4cc95627814d6c0fbbc973976ef2371bb66b7f7d.tar.bz2
Regenerated, no significant diferences.
Diffstat (limited to 'Mac/Modules')
-rw-r--r--Mac/Modules/list/Listmodule.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/Mac/Modules/list/Listmodule.c b/Mac/Modules/list/Listmodule.c
index 9b09341..5d934bf 100644
--- a/Mac/Modules/list/Listmodule.c
+++ b/Mac/Modules/list/Listmodule.c
@@ -594,6 +594,12 @@ ListObj_setattr(self, name, value)
}
+#define ListObj_compare NULL
+
+#define ListObj_repr NULL
+
+#define ListObj_hash NULL
+
PyTypeObject List_Type = {
PyObject_HEAD_INIT(&PyType_Type)
0, /*ob_size*/
@@ -605,6 +611,12 @@ PyTypeObject List_Type = {
0, /*tp_print*/
(getattrfunc) ListObj_getattr, /*tp_getattr*/
(setattrfunc) ListObj_setattr, /*tp_setattr*/
+ (cmpfunc) ListObj_compare, /*tp_compare*/
+ (reprfunc) ListObj_repr, /*tp_repr*/
+ (PyNumberMethods *)0, /* tp_as_number */
+ (PySequenceMethods *)0, /* tp_as_sequence */
+ (PyMappingMethods *)0, /* tp_as_mapping */
+ (hashfunc) ListObj_hash, /*tp_hash*/
};
/* ---------------------- End object type List ---------------------- */