mirror of
https://github.com/python/cpython.git
synced 2026-08-03 15:47:03 -04:00
The function `dict_set_fromkeys()` adds elements of a set to an existing
dictionary. The size of the expanded dictionary was estimated with
`PySet_GET_SIZE(iterable)`, which did not take into account the size of the
existing dictionary.
(cherry picked from commit 421ba589d0)
Co-authored-by: Angela Liss <[email protected]>
Source files for various builtin objects