summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDonghee Na <donghee.na@python.org>2025-01-05 09:17:06 (GMT)
committerGitHub <noreply@github.com>2025-01-05 09:17:06 (GMT)
commitae23a012e6c8aadc4a588101cbe7bc86ede45627 (patch)
tree4f2f3f1a21a8170f9ae7b3b6798baac347b464a2 /Misc
parentb60044b838f3ea97395cd6f3adbd5330356fc273 (diff)
downloadcpython-ae23a012e6c8aadc4a588101cbe7bc86ede45627.zip
cpython-ae23a012e6c8aadc4a588101cbe7bc86ede45627.tar.gz
cpython-ae23a012e6c8aadc4a588101cbe7bc86ede45627.tar.bz2
gh-128137: Update PyASCIIObject to handle interned field with the atomic operation (gh-128196)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core_and_Builtins/2024-12-24-01-40-12.gh-issue-128137.gsTwr_.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2024-12-24-01-40-12.gh-issue-128137.gsTwr_.rst b/Misc/NEWS.d/next/Core_and_Builtins/2024-12-24-01-40-12.gh-issue-128137.gsTwr_.rst
new file mode 100644
index 0000000..a3b7cde
--- /dev/null
+++ b/Misc/NEWS.d/next/Core_and_Builtins/2024-12-24-01-40-12.gh-issue-128137.gsTwr_.rst
@@ -0,0 +1,2 @@
+Update :c:type:`PyASCIIObject` layout to handle interned field with the
+atomic operation. Patch by Donghee Na.