From 8ff70a9606aa2f51f8329fbf09dfbbbae6ab6c11 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Mon, 10 Sep 2001 23:53:53 +0000 Subject: [PATCH] Fix tortured comment -- I must be on drugs today. --- Objects/abstract.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.40.0