diff options
author | Mark Shannon <mark@hotpy.org> | 2021-08-04 15:41:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-04 15:41:14 (GMT) |
commit | cee67fa66129b5d1db5c8aa3884338f82f0da3de (patch) | |
tree | 079f04f5ba63c5cbd2133c7ada636d28e117ff18 /Misc/NEWS.d | |
parent | c83919bd635f4433f1c6ae8504996a9fe3c215e5 (diff) | |
download | cpython-cee67fa66129b5d1db5c8aa3884338f82f0da3de.zip cpython-cee67fa66129b5d1db5c8aa3884338f82f0da3de.tar.gz cpython-cee67fa66129b5d1db5c8aa3884338f82f0da3de.tar.bz2 |
bpo-44821: Eagerly assign __dict__ for new objects. (GH-27589)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2021-08-04-11-37-38.bpo-44821.67YHGI.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-08-04-11-37-38.bpo-44821.67YHGI.rst b/Misc/NEWS.d/next/Core and Builtins/2021-08-04-11-37-38.bpo-44821.67YHGI.rst new file mode 100644 index 0000000..1e254a6 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2021-08-04-11-37-38.bpo-44821.67YHGI.rst @@ -0,0 +1,2 @@ +Create instance dictionaries (__dict__) eagerly, to improve regularity of +object layout and assist specialization. |