diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-09-11 14:17:32 (GMT) |
---|---|---|
committer | Paul Ganssle <paul@ganssle.io> | 2019-09-11 14:17:32 (GMT) |
commit | 7117074410118086938044c7a4ef6846ec1662b2 (patch) | |
tree | 0c117546203e392b28a3388037227f5b493261e1 /Doc/whatsnew/3.4.rst | |
parent | 7b69069e9aa0047a0dbe8af1a67aa2b355dc68d8 (diff) | |
download | cpython-7117074410118086938044c7a4ef6846ec1662b2.zip cpython-7117074410118086938044c7a4ef6846ec1662b2.tar.gz cpython-7117074410118086938044c7a4ef6846ec1662b2.tar.bz2 |
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 'Doc/whatsnew/3.4.rst')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 2 |
1 files changed, 1 insertions, 1 deletions
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. |