Remove duplicated words words (GH-22298)

This commit is contained in:
Serhiy Storchaka 2020-09-18 09:54:42 +03:00 committed by GitHub
parent 5a8364780b
commit 27201cddf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -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)

View File

@ -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`)

View File

@ -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.

View File

@ -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.