From: Chris Date: Tue, 12 Dec 2017 07:59:30 +0000 (-0800) Subject: Fix small typo in tupleobject.h (#4801) X-Git-Tag: v3.7.0a4~168 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e0720cd9e44d43587e6b6c91fd21d0bb0345ccb9;p=python Fix small typo in tupleobject.h (#4801) --- diff --git a/Include/tupleobject.h b/Include/tupleobject.h index 98c26220ea..72a7d8d585 100644 --- a/Include/tupleobject.h +++ b/Include/tupleobject.h @@ -10,7 +10,7 @@ extern "C" { /* Another generally useful object type is a tuple of object pointers. For Python, this is an immutable type. C code can change the tuple items -(but not their number), and even use tuples are general-purpose arrays of +(but not their number), and even use tuples as general-purpose arrays of object references, but in general only brand new tuples should be mutated, not ones that might already have been exposed to Python code.