summaryrefslogtreecommitdiff
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2019-09-11 19:49:02 -0700
committerGitHub <noreply@github.com>2019-09-11 19:49:02 -0700
commiteb494b470d36e4951859fc0b89c1fa50006fe84f (patch)
tree2defd9c32a3c83dd720b80fa21efe0108e441cc6 /Doc/whatsnew
parent39de95b746c990e6a2fe9af5fad01747f58b2e5f (diff)
downloadcpython-git-revert-15895-named_tuple_concept.tar.gz
Revert "bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895)"revert-15895-named_tuple_concept
This reverts commit 7117074410118086938044c7a4ef6846ec1662b2.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.3.rst4
-rw-r--r--Doc/whatsnew/3.4.rst2
2 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index f1a033c6da..ea036840d6 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -2002,8 +2002,8 @@ platform-independent fashion. (Contributed by Ross Lagerwall in
sys
---
-The :mod:`sys` module has a new :data:`~sys.thread_info` :term:`named
-tuple` holding information about the thread implementation
+The :mod:`sys` module has a new :data:`~sys.thread_info` :term:`struct
+sequence` holding information about the thread implementation
(:issue:`11223`).
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
index 822ba81be8..845e327cab 100644
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -1849,7 +1849,7 @@ Python's default implementation to a SipHash implementation on platforms that
have a 64 bit data type. Any performance differences in comparison with the
older FNV algorithm are trivial.
-The PEP adds additional fields to the :attr:`sys.hash_info` named tuple to
+The PEP adds additional fields to the :attr:`sys.hash_info` struct sequence to
describe the hash algorithm in use by the currently executing binary. Otherwise,
the PEP does not alter any existing CPython APIs.