[Python-checkins] Remove duplicated words words (GH-22298)

Serhiy Storchaka webhook-mailer at python.org
Fri Sep 18 02:54:56 EDT 2020


https://github.com/python/cpython/commit/27201cddf3b25be7df25bbe36966531539757d60
commit: 27201cddf3b25be7df25bbe36966531539757d60
branch: master
author: Serhiy Storchaka <storchaka at gmail.com>
committer: GitHub <noreply at github.com>
date: 2020-09-18T09:54:42+03:00
summary:

Remove duplicated words words (GH-22298)

files:
M Doc/library/tkinter.font.rst
M Doc/whatsnew/3.9.rst
M Misc/NEWS.d/next/Library/2020-06-02-23-49-07.bpo-32604.ZN4V4l.rst
M Misc/NEWS.d/next/Library/2020-06-04-16-25-15.bpo-40807.yYyLWx.rst

diff --git a/Doc/library/tkinter.font.rst b/Doc/library/tkinter.font.rst
index 30c1e7b5f9eb4..b0f4505e9e3c6 100644
--- a/Doc/library/tkinter.font.rst
+++ b/Doc/library/tkinter.font.rst
@@ -38,8 +38,8 @@ The different font weights and slants are:
        | *family* - font family i.e. Courier, Times
        | *size* - font size
        |     If *size* is positive it is interpreted as size in points.
-       |     If *size* is a negative number its absolute value is treated as
-             as size in pixels.
+       |     If *size* is a negative number its absolute value is treated
+       |     as size in pixels.
        | *weight* - font emphasis (NORMAL, BOLD)
        | *slant* - ROMAN, ITALIC
        | *underline* - font underlining (0 - none, 1 - underline)
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index b3cc84d07f38d..e9fc496e47e24 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -887,7 +887,7 @@ Removed
   deprecated since 2006, and only returning ``False`` when it's called.
   (Contributed by Batuhan Taskaya in :issue:`40208`)
 
-* The :meth:`asyncio.Task.current_task` and :meth:`asyncio.Task.all_tasks` have
+* The :meth:`asyncio.Task.current_task` and :meth:`asyncio.Task.all_tasks`
   have been removed. They were deprecated since Python 3.7 and you can use
   :func:`asyncio.current_task` and :func:`asyncio.all_tasks` instead.
   (Contributed by Rémi Lapeyre in :issue:`40967`)
diff --git a/Misc/NEWS.d/next/Library/2020-06-02-23-49-07.bpo-32604.ZN4V4l.rst b/Misc/NEWS.d/next/Library/2020-06-02-23-49-07.bpo-32604.ZN4V4l.rst
index 6375276602e4a..af284b06eaed6 100644
--- a/Misc/NEWS.d/next/Library/2020-06-02-23-49-07.bpo-32604.ZN4V4l.rst
+++ b/Misc/NEWS.d/next/Library/2020-06-02-23-49-07.bpo-32604.ZN4V4l.rst
@@ -1,2 +1,2 @@
-Fix reference leak in the :mod:`select` module when the the module is
+Fix reference leak in the :mod:`select` module when the module is
 imported in a subinterpreter.
diff --git a/Misc/NEWS.d/next/Library/2020-06-04-16-25-15.bpo-40807.yYyLWx.rst b/Misc/NEWS.d/next/Library/2020-06-04-16-25-15.bpo-40807.yYyLWx.rst
index 532b809b77eed..c64a86295d770 100644
--- a/Misc/NEWS.d/next/Library/2020-06-04-16-25-15.bpo-40807.yYyLWx.rst
+++ b/Misc/NEWS.d/next/Library/2020-06-04-16-25-15.bpo-40807.yYyLWx.rst
@@ -1,2 +1,2 @@
 Stop codeop._maybe_compile, used by code.InteractiveInterpreter (and IDLE).
-from from emitting each warning three times.
+from emitting each warning three times.



More information about the Python-checkins mailing list