diff options
author | Weiliang Li <to.be.impressive@gmail.com> | 2020-10-24 00:11:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-24 00:11:10 (GMT) |
commit | dc33f798139016961fba33b37c792c690399b2b6 (patch) | |
tree | af712a3ebce13745f225ea6261297141ecb7a7a6 /Doc/whatsnew | |
parent | 750a8a9568742917b1f62f30ed3c54e26088a5c2 (diff) | |
download | cpython-dc33f798139016961fba33b37c792c690399b2b6.zip cpython-dc33f798139016961fba33b37c792c690399b2b6.tar.gz cpython-dc33f798139016961fba33b37c792c690399b2b6.tar.bz2 |
bpo-41950: Typo in Python 3.9 what's new page (GH-22573)
Diffstat (limited to 'Doc/whatsnew')
-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 da07185..1a37f16 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -1177,7 +1177,7 @@ CPython bytecode changes * ``COMPARE_OP`` for rich comparisons * ``IS_OP`` for 'is' and 'is not' tests - * ``CONTAINS_OP`` for 'in' and 'is not' tests + * ``CONTAINS_OP`` for 'in' and 'not in' tests * ``JUMP_IF_NOT_EXC_MATCH`` for checking exceptions in 'try-except' statements. |