]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove stray comments.
authorJeremy Hylton <jeremy@alum.mit.edu>
Wed, 16 Jul 2003 16:17:57 +0000 (16:17 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Wed, 16 Jul 2003 16:17:57 +0000 (16:17 +0000)
Objects/typeobject.c

index f2511791b2ce9690e095340e68dda771f3f79732..60c4fbc6d10d56aaefbcd4405cfc231b5332bbe1 100644 (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'",