]> granicus.if.org Git - python/commitdiff
Fix tortured comment -- I must be on drugs today.
authorTim Peters <tim.peters@gmail.com>
Mon, 10 Sep 2001 23:53:53 +0000 (23:53 +0000)
committerTim Peters <tim.peters@gmail.com>
Mon, 10 Sep 2001 23:53:53 +0000 (23:53 +0000)
Objects/abstract.c

index 3609948beef8f526f96076f78d5204dc1a64d9df..c44f8c25cf0e80885e927e8e638c64fbe3d49a09 100644 (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;
        }