summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWeiliang Li <to.be.impressive@gmail.com>2020-10-24 09:11:10 +0900
committerGuido van Rossum <guido@python.org>2020-10-23 17:20:59 -0700
commit54510e8327d625f9947878a925c800510c3accef (patch)
treec8b029b5371b4fec16f560943d6e73d140f8bf86
parentb43b56de21f783a41d8ee40b4707ff92ebb4ea92 (diff)
downloadcpython-git-sync-39-whatsnew.tar.gz
bpo-41950: Typo in Python 3.9 what's new page (GH-22573)sync-39-whatsnew
-rw-r--r--Doc/whatsnew/3.9.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index da07185615..1a37f16ea2 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.