summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2018-02-18 21:46:49 (GMT)
committerIvan Levkivskyi <levkivskyi@gmail.com>2018-02-18 21:46:49 (GMT)
commit3fb813d2c67fe28cc98ae51e53a6890294b6e423 (patch)
treee437138cb5e9236d0d2fc3db3613f332642de74b /Doc
parentb3b4a9d3001f1fc7df8efcccdce081de54fa5eab (diff)
downloadcpython-3fb813d2c67fe28cc98ae51e53a6890294b6e423.zip
cpython-3fb813d2c67fe28cc98ae51e53a6890294b6e423.tar.gz
cpython-3fb813d2c67fe28cc98ae51e53a6890294b6e423.tar.bz2
bpo-31333: Fix typo in whatsnew/3.7.rst (GH-5744)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.7.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index c35f07c..50c9238 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -853,7 +853,7 @@ Optimizations
* Constant folding is moved from peephole optimizer to new AST optimizer.
(Contributed by Eugene Toder and INADA Naoki in :issue:`29469`)
-* Most functions and methods in :mod:`abc` have been rewrittent in C.
+* Most functions and methods in :mod:`abc` have been rewritten in C.
This makes creation of abstract base classes, and calling :func:`isinstance`
and :func:`issubclass` on them 1.5x faster. This also reduces Python
start-up time by up to 10%. (Contributed by Ivan Levkivskyi and INADA Naoki