summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-09-04 23:38:50 (GMT)
committerGitHub <noreply@github.com>2020-09-04 23:38:50 (GMT)
commitd64d78be20ced6ac9de58e91e69eaba184e36e9b (patch)
tree8dbc053cbdb99129d22bdfd7e324b79b49d765b2 /Misc
parent242eac1f0407ba27fd61683eaf34558d5e4ff360 (diff)
downloadcpython-d64d78be20ced6ac9de58e91e69eaba184e36e9b.zip
cpython-d64d78be20ced6ac9de58e91e69eaba184e36e9b.tar.gz
cpython-d64d78be20ced6ac9de58e91e69eaba184e36e9b.tar.bz2
bpo-41531: Fix compilation of dict literals with more than 0xFFFF elements (GH-21850) (GH-22107)
(cherry picked from commit c51db0ea40ddabaf5f771ea633b37fcf4c90a495) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-08-12-19-32-15.bpo-41531.WgPzjT.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-08-12-19-32-15.bpo-41531.WgPzjT.rst b/Misc/NEWS.d/next/Core and Builtins/2020-08-12-19-32-15.bpo-41531.WgPzjT.rst
new file mode 100644
index 0000000..8544664
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-08-12-19-32-15.bpo-41531.WgPzjT.rst
@@ -0,0 +1,2 @@
+Fix a bug that was dropping keys when compiling dict literals with more than
+0xFFFF elements. Patch by Pablo Galindo.