diff options
author | Paul Ganssle <paul@ganssle.io> | 2019-09-12 02:50:29 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-09-12 02:50:29 (GMT) |
commit | 2bb6bf0c8cf863c057027b10751c0fb74189871f (patch) | |
tree | bd5f418d35e71fdd9d9217e844bbc8fbb5c3262f /Python/thread.c | |
parent | a5a7102636de82e0687af7131357762337d49c7c (diff) | |
download | cpython-2bb6bf0c8cf863c057027b10751c0fb74189871f.zip cpython-2bb6bf0c8cf863c057027b10751c0fb74189871f.tar.gz cpython-2bb6bf0c8cf863c057027b10751c0fb74189871f.tar.bz2 |
bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895) (GH-15961)
Diffstat (limited to 'Python/thread.c')
-rw-r--r-- | Python/thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/thread.c b/Python/thread.c index c5364f9..c36ce6f 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"}, |