summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorKira <kp2pml30@gmail.com>2024-09-28 22:15:43 (GMT)
committerGitHub <noreply@github.com>2024-09-28 22:15:43 (GMT)
commit04c837d9d8a474777ef9c1412fbba14f0682366c (patch)
treef15aa115d8380ceea4f3b5f6f722751f0676bf8a /Misc/NEWS.d
parent69a4063ca516360b5eb96f5432ad9f9dfc32a72e (diff)
downloadcpython-04c837d9d8a474777ef9c1412fbba14f0682366c.zip
cpython-04c837d9d8a474777ef9c1412fbba14f0682366c.tar.gz
cpython-04c837d9d8a474777ef9c1412fbba14f0682366c.tar.bz2
gh-124442: make `__static_attributes__` deterministic by sorting (#124492)
Signed-off-by: kp2pml30 <kp2pml30@gmail.com> Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core_and_Builtins/2024-09-25-11-53-22.gh-issue-124442.EXC1Ve.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2024-09-25-11-53-22.gh-issue-124442.EXC1Ve.rst b/Misc/NEWS.d/next/Core_and_Builtins/2024-09-25-11-53-22.gh-issue-124442.EXC1Ve.rst
new file mode 100644
index 0000000..58e79f2
--- /dev/null
+++ b/Misc/NEWS.d/next/Core_and_Builtins/2024-09-25-11-53-22.gh-issue-124442.EXC1Ve.rst
@@ -0,0 +1,2 @@
+Fix nondeterminism in compilation by sorting the value of
+:attr:`~type.__static_attributes__`. Patch by kp2pml30.