summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2024-06-25 15:39:29 (GMT)
committerGitHub <noreply@github.com>2024-06-25 15:39:29 (GMT)
commit899dfbaf0e62c71885eced4747d7d4c93b7bbd4f (patch)
treef8e401ba3ae816d4396cf12844a0b31faa3d6ce1 /Misc/NEWS.d
parent1764a310e8bdd7dc0c59308bd7190a0f5aa8ff40 (diff)
downloadcpython-899dfbaf0e62c71885eced4747d7d4c93b7bbd4f.zip
cpython-899dfbaf0e62c71885eced4747d7d4c93b7bbd4f.tar.gz
cpython-899dfbaf0e62c71885eced4747d7d4c93b7bbd4f.tar.bz2
[3.13] gh-120108: Fix deepcopying of AST trees with .parent attributes (GH-120114) (#121000)
(cherry picked from commit 42b2c9d78da7ebd6bd5925a4d4c78aec3c9e78e6)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2024-06-05-08-02-46.gh-issue-120108.4U9BL8.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-06-05-08-02-46.gh-issue-120108.4U9BL8.rst b/Misc/NEWS.d/next/Library/2024-06-05-08-02-46.gh-issue-120108.4U9BL8.rst
new file mode 100644
index 0000000..e310695
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-06-05-08-02-46.gh-issue-120108.4U9BL8.rst
@@ -0,0 +1,2 @@
+Fix calling :func:`copy.deepcopy` on :mod:`ast` trees that have been
+modified to have references to parent nodes. Patch by Jelle Zijlstra.