diff options
author | Shantanu <12621235+hauntsaninja@users.noreply.github.com> | 2020-10-18 15:39:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-18 15:39:26 (GMT) |
commit | 67f04878debbcec60191cddbddf9c83e8b9b36fe (patch) | |
tree | 4f73e11aac9edbc6aa159d8fb8373092ca604cca | |
parent | 1bcaa81e520e30f920bd69e46fbf1d67a9107ce1 (diff) | |
download | cpython-67f04878debbcec60191cddbddf9c83e8b9b36fe.zip cpython-67f04878debbcec60191cddbddf9c83e8b9b36fe.tar.gz cpython-67f04878debbcec60191cddbddf9c83e8b9b36fe.tar.bz2 |
3.9 whatsnew: fix bpo issue for AST change (GH-22742)
-rw-r--r-- | Doc/whatsnew/3.9.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index 22fdbd5..8901798 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -766,7 +766,7 @@ Deprecated and will be removed in future Python versions. ``value`` itself should be used instead of ``Index(value)``. ``Tuple(slices, Load())`` should be used instead of ``ExtSlice(slices)``. - (Contributed by Serhiy Storchaka in :issue:`32892`.) + (Contributed by Serhiy Storchaka in :issue:`34822`.) * :mod:`ast` classes ``Suite``, ``Param``, ``AugLoad`` and ``AugStore`` are considered deprecated and will be removed in future Python versions. |