diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-03-17 21:41:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-17 21:41:08 (GMT) |
commit | 6b97598fb66a08d0f36e4d73bffea5c1b17740d4 (patch) | |
tree | 5fb1922e733a71ad26788b1d5f3f9575ca015600 /Doc | |
parent | dab8423d220243efabbbcafafc12d90145539b50 (diff) | |
download | cpython-6b97598fb66a08d0f36e4d73bffea5c1b17740d4.zip cpython-6b97598fb66a08d0f36e4d73bffea5c1b17740d4.tar.gz cpython-6b97598fb66a08d0f36e4d73bffea5c1b17740d4.tar.bz2 |
bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.9.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index fd3d333..6a6d1ee 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -678,9 +678,10 @@ Removed defining ``COUNT_ALLOCS`` macro. (Contributed by Victor Stinner in :issue:`39489`.) -* 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`.) +* The ``ast.Suite``, ``ast.Param``, ``ast.AugLoad`` and ``ast.AugStore`` + node classes have been removed due to no longer being needed. + (Contributed by Batuhan Taskaya in :issue:`39639` and :issue:`39969` + and Serhiy Storchaka in :issue:`39988`.) Porting to Python 3.9 |