Fix tortured comment -- I must be on drugs today.

This commit is contained in:
Tim Peters 2001-09-10 23:53:53 +00:00
parent 4c3a0a35cd
commit 8ff70a9606
1 changed files with 2 additions and 2 deletions

View File

@ -1238,8 +1238,8 @@ PySequence_Tuple(PyObject *v)
if (PyTuple_CheckExact(v)) {
/* Note that we can't know whether it's safe to return
a tuple *subclass* instance as-is, hence the restriction
to exact tuples here. In contrasts, lists always make
a copy, so there's need for exactness below. */
to exact tuples here. In contrast, lists always make
a copy, so there's no need for exactness below. */
Py_INCREF(v);
return v;
}