]> granicus.if.org Git - python/commitdiff
bpo-31333: Fix typo in whatsnew/3.7.rst (GH-5744)
authorTerry Jan Reedy <tjreedy@udel.edu>
Sun, 18 Feb 2018 21:46:49 +0000 (16:46 -0500)
committerIvan Levkivskyi <levkivskyi@gmail.com>
Sun, 18 Feb 2018 21:46:49 +0000 (21:46 +0000)
Doc/whatsnew/3.7.rst

index c35f07c0eabf7138de02b9f8672957470695bcb6..50c9238e4aa8a289023103ee523136d2193759cd 100644 (file)
@@ -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