Remove stray comments.

This commit is contained in:
Jeremy Hylton 2003-07-16 16:17:57 +00:00
parent 1c7a0ea056
commit f75d9fce16

View file

@ -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'",