diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-05-09 22:52:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-09 22:52:42 (GMT) |
commit | 00ec116883f71d51b4f27fe7f6ea98cf1f176e6e (patch) | |
tree | 66c3c6f2b583c894fc6e32499ac5dbe684cd252e /Misc/NEWS.d | |
parent | 982c73a33edf6c1348812c1794a95c20c0c2d906 (diff) | |
download | cpython-00ec116883f71d51b4f27fe7f6ea98cf1f176e6e.zip cpython-00ec116883f71d51b4f27fe7f6ea98cf1f176e6e.tar.gz cpython-00ec116883f71d51b4f27fe7f6ea98cf1f176e6e.tar.bz2 |
[3.13] gh-118851: Default ctx arguments to AST constructors to Load() (GH-118854) (#118871)
(cherry picked from commit 68fbc00dc870f6a8dcbecd2ec19298e21015867f)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-05-09-08-46-12.gh-issue-118851.aPAoJw.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-05-09-08-46-12.gh-issue-118851.aPAoJw.rst b/Misc/NEWS.d/next/Library/2024-05-09-08-46-12.gh-issue-118851.aPAoJw.rst new file mode 100644 index 0000000..d036d0c --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-05-09-08-46-12.gh-issue-118851.aPAoJw.rst @@ -0,0 +1,2 @@ +``ctx`` arguments to the constructors of :mod:`ast` node classes now default +to :class:`ast.Load() <ast.Load>`. Patch by Jelle Zijlstra. |