summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorJoe Jevnik <JoeJev@gmail.com>2019-02-21 21:00:40 (GMT)
committerRaymond Hettinger <rhettinger@users.noreply.github.com>2019-02-21 21:00:40 (GMT)
commitf36f89257b30e0bf88e8aaff6da14a9a96f57b9e (patch)
treec8e0d07472981a5cb4fcf4d597178c9a30c06819 /Doc
parent407c7343266eb3e5a2f5c1f4913082c84f8dd8a0 (diff)
downloadcpython-f36f89257b30e0bf88e8aaff6da14a9a96f57b9e.zip
cpython-f36f89257b30e0bf88e8aaff6da14a9a96f57b9e.tar.gz
cpython-f36f89257b30e0bf88e8aaff6da14a9a96f57b9e.tar.bz2
bpo-36068: Make _tuplegetter objects serializable (GH-11981)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.8.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index 66e1c13..2f759f3 100644
--- a/Doc/whatsnew/3.8.rst
+++ b/Doc/whatsnew/3.8.rst
@@ -368,7 +368,7 @@ Optimizations
* Sped-up field lookups in :func:`collections.namedtuple`. They are now more
than two times faster, making them the fastest form of instance variable
lookup in Python. (Contributed by Raymond Hettinger, Pablo Galindo, and
- Serhiy Storchaka in :issue:`32492`.)
+ Joe Jevnik, Serhiy Storchaka in :issue:`32492`.)
* The :class:`list` constructor does not overallocate the internal item buffer
if the input iterable has a known length (the input implements ``__len__``).