summaryrefslogtreecommitdiff
path: root/Python/thread.c
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2019-09-11 07:17:32 -0700
committerPaul Ganssle <paul@ganssle.io>2019-09-11 15:17:32 +0100
commit7117074410118086938044c7a4ef6846ec1662b2 (patch)
tree0c117546203e392b28a3388037227f5b493261e1 /Python/thread.c
parent7b69069e9aa0047a0dbe8af1a67aa2b355dc68d8 (diff)
downloadcpython-git-7117074410118086938044c7a4ef6846ec1662b2.tar.gz
bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895)
* bpo-38096: Clean up the "struct sequence" / "named tuple" docs * Fix remaining occurrences of "struct sequence" * Repair a user visible docstring
Diffstat (limited to 'Python/thread.c')
-rw-r--r--Python/thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/thread.c b/Python/thread.c
index c5364f9194..c36ce6ff98 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 struct sequence holding information about the thread implementation.");
+A named tuple holding information about the thread implementation.");
static PyStructSequence_Field threadinfo_fields[] = {
{"name", "name of the thread implementation"},