From: Tim Peters Date: Mon, 10 Sep 2001 23:53:53 +0000 (+0000) Subject: Fix tortured comment -- I must be on drugs today. X-Git-Tag: v2.2.1c1~1869 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8ff70a9606aa2f51f8329fbf09dfbbbae6ab6c11;p=python Fix tortured comment -- I must be on drugs today. --- diff --git a/Objects/abstract.c b/Objects/abstract.c index 3609948bee..c44f8c25cf 100644 --- a/Objects/abstract.c +++ b/Objects/abstract.c @@ -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; }