From eb494b470d36e4951859fc0b89c1fa50006fe84f Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Wed, 11 Sep 2019 19:49:02 -0700 Subject: Revert "bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895)" This reverts commit 7117074410118086938044c7a4ef6846ec1662b2. --- Python/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/thread.c') diff --git a/Python/thread.c b/Python/thread.c index c36ce6ff98..c5364f9194 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -147,7 +147,7 @@ PyThread_tss_is_created(Py_tss_t *key) PyDoc_STRVAR(threadinfo__doc__, "sys.thread_info\n\ \n\ -A named tuple holding information about the thread implementation."); +A struct sequence holding information about the thread implementation."); static PyStructSequence_Field threadinfo_fields[] = { {"name", "name of the thread implementation"}, -- cgit v1.2.1