From f75d9fce1689f3e7768fd425858469dc91cbff58 Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Wed, 16 Jul 2003 16:17:57 +0000 Subject: [PATCH] Remove stray comments. --- Objects/typeobject.c | 1 - 1 file changed, 1 deletion(-) diff --git a/Objects/typeobject.c b/Objects/typeobject.c index f2511791b2..60c4fbc6d1 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -1654,7 +1654,6 @@ type_new(PyTypeObject *metatype, PyObject *args, PyObject *kwds) /* Are slots allowed? */ nslots = PyTuple_GET_SIZE(slots); if (nslots > 0 && base->tp_itemsize != 0) { - /* for the special case of meta types, allow slots */ PyErr_Format(PyExc_TypeError, "nonempty __slots__ " "not supported for subtype of '%s'", -- 2.50.1