]> granicus.if.org Git - python/commitdiff
Regenerated, no significant diferences.
authorJack Jansen <jack.jansen@cwi.nl>
Thu, 30 Sep 1999 11:17:15 +0000 (11:17 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Thu, 30 Sep 1999 11:17:15 +0000 (11:17 +0000)
Mac/Modules/list/Listmodule.c

index 9b09341af73738c33237933c0c60e1142f7ed766..5d934bf45018aee27dcaa24b48c946c9602003df 100644 (file)
@@ -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 ---------------------- */