diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-02-16 20:47:48 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-02-16 20:47:48 (GMT) |
commit | e182318e6a473e6e9341f1aab8e49f2b1035c674 (patch) | |
tree | 4f215e780673bb9d5a40822fbba9678b630c4b4b /Doc | |
parent | 63fa1cfece4912110ce3a0ff11fb3ade3ff5e756 (diff) | |
download | cpython-e182318e6a473e6e9341f1aab8e49f2b1035c674.zip cpython-e182318e6a473e6e9341f1aab8e49f2b1035c674.tar.gz cpython-e182318e6a473e6e9341f1aab8e49f2b1035c674.tar.bz2 |
bpo-33234: Add another attribution in Whatsnew (GH-11899)
https://bugs.python.org/issue33234
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 5d2451b..6bc1314 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -372,8 +372,8 @@ Optimizations * The :class:`list` constructor does not overallocate the internal item buffer if the input iterable has a known length (the input implements ``__len__``). - This makes the created list 12% smaller on average. (Contributed by Pablo - Galindo in :issue:`33234`.) + This makes the created list 12% smaller on average. (Contributed by + Raymond Hettinger and Pablo Galindo in :issue:`33234`.) Build and C API Changes |