From: Jeremy Hylton Date: Wed, 16 Jul 2003 16:17:57 +0000 (+0000) Subject: Remove stray comments. X-Git-Tag: v2.3c1~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f75d9fce1689f3e7768fd425858469dc91cbff58;p=thirdparty%2FPython%2Fcpython.git Remove stray comments. --- diff --git a/Objects/typeobject.c b/Objects/typeobject.c index f2511791b2ce..60c4fbc6d10d 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'",