diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2003-07-16 16:17:57 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2003-07-16 16:17:57 (GMT) |
commit | f75d9fce1689f3e7768fd425858469dc91cbff58 (patch) | |
tree | c5c6ac36964c3ea3b2656422033697ccce732264 /Objects | |
parent | 1c7a0ea05624b7967200e07ee345d26564b11b66 (diff) | |
download | cpython-f75d9fce1689f3e7768fd425858469dc91cbff58.zip cpython-f75d9fce1689f3e7768fd425858469dc91cbff58.tar.gz cpython-f75d9fce1689f3e7768fd425858469dc91cbff58.tar.bz2 |
Remove stray comments.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index f251179..60c4fbc 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'", |