summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-08-21 12:31:11 (GMT)
committerGitHub <noreply@github.com>2023-08-21 12:31:11 (GMT)
commit1ce8b92ce92e9a44ac804ea4e4c61d08d7e89a2e (patch)
tree8c2fa1f4d4a1eeeaba8cf5c1c5de1a38c04f7ebc /Misc
parentf798a6360b038a3fc47509101eb77bcc1c9b6662 (diff)
downloadcpython-1ce8b92ce92e9a44ac804ea4e4c61d08d7e89a2e.zip
cpython-1ce8b92ce92e9a44ac804ea4e4c61d08d7e89a2e.tar.gz
cpython-1ce8b92ce92e9a44ac804ea4e4c61d08d7e89a2e.tar.bz2
[3.12] gh-105736: Sync pure python version of OrderedDict with the C version (GH-108098) (#108200)
gh-105736: Sync pure python version of OrderedDict with the C version (GH-108098) (cherry picked from commit 20cc90c0df3e368fe7cb63d958f0b17a78fa9d0a) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2023-08-17-14-45-25.gh-issue-105736.NJsH7r.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-08-17-14-45-25.gh-issue-105736.NJsH7r.rst b/Misc/NEWS.d/next/Library/2023-08-17-14-45-25.gh-issue-105736.NJsH7r.rst
new file mode 100644
index 0000000..f051317
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-08-17-14-45-25.gh-issue-105736.NJsH7r.rst
@@ -0,0 +1,3 @@
+Harmonized the pure Python version of OrderedDict with the C version. Now,
+both versions set up their internal state in `__new__`. Formerly, the pure
+Python version did the set up in `__init__`.