diff options
author | Batuhan Taşkaya <47358913+isidentical@users.noreply.github.com> | 2020-03-15 19:32:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-15 19:32:17 (GMT) |
commit | 8689209e0338943dba9b7ff5566b8a420374764c (patch) | |
tree | 85b8eaa7a411ad1012628f17a56ae899c4ab19c5 /Doc | |
parent | 61ac612e78e4f2625977406fb6f366e0a644673a (diff) | |
download | cpython-8689209e0338943dba9b7ff5566b8a420374764c.zip cpython-8689209e0338943dba9b7ff5566b8a420374764c.tar.gz cpython-8689209e0338943dba9b7ff5566b8a420374764c.tar.bz2 |
bpo-39969: Remove ast.Param node class as is no longer used (GH-19020)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.9.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index 12e3f18..1d462c2 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -664,8 +664,9 @@ Removed defining ``COUNT_ALLOCS`` macro. (Contributed by Victor Stinner in :issue:`39489`.) -* The ``ast.Suite`` node class has been removed due to no longer being needed. - (Contributed by Batuhan Taskaya in :issue:`39639`.) +* The ``ast.Suite`` and ``ast.Param`` node classes has been removed due to no + longer being needed. + (Contributed by Batuhan Taskaya in :issue:`39639` and :issue:`39969`.) Porting to Python 3.9 |