diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-09-10 23:53:53 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-09-10 23:53:53 (GMT) |
commit | 8ff70a9606aa2f51f8329fbf09dfbbbae6ab6c11 (patch) | |
tree | 67d621cf9c96f97ab45bea8492d59b328ccb3a81 /Objects/abstract.c | |
parent | 4c3a0a35cd80a0abb9628dc8d4ade911fe2d5015 (diff) | |
download | cpython-8ff70a9606aa2f51f8329fbf09dfbbbae6ab6c11.zip cpython-8ff70a9606aa2f51f8329fbf09dfbbbae6ab6c11.tar.gz cpython-8ff70a9606aa2f51f8329fbf09dfbbbae6ab6c11.tar.bz2 |
Fix tortured comment -- I must be on drugs today.
Diffstat (limited to 'Objects/abstract.c')
-rw-r--r-- | Objects/abstract.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c index 3609948..c44f8c2 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; } |