summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorPaul Ganssle <paul@ganssle.io>2019-09-12 02:50:29 (GMT)
committerRaymond Hettinger <rhettinger@users.noreply.github.com>2019-09-12 02:50:29 (GMT)
commit2bb6bf0c8cf863c057027b10751c0fb74189871f (patch)
treebd5f418d35e71fdd9d9217e844bbc8fbb5c3262f /Doc/whatsnew
parenta5a7102636de82e0687af7131357762337d49c7c (diff)
downloadcpython-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 '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 ea03684..f1a033c 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:`struct
-sequence` holding information about the thread implementation
+The :mod:`sys` module has a new :data:`~sys.thread_info` :term:`named
+tuple` holding information about the thread implementation
(:issue:`11223`).
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
index 845e327..822ba81 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` struct sequence to
+The PEP adds additional fields to the :attr:`sys.hash_info` named tuple to
describe the hash algorithm in use by the currently executing binary. Otherwise,
the PEP does not alter any existing CPython APIs.