summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2020-09-18 07:13:57 (GMT)
committerŁukasz Langa <lukasz@langa.pl>2020-10-04 15:32:39 (GMT)
commitf093007d4cf59fca19cb779c798752f7fbf837f8 (patch)
tree9ccf2bee6fd0bf58cb51620e4d587f396d94e2c4
parent3d87eee300e0ec1da1eda85b9005395a2af23d1b (diff)
downloadcpython-f093007d4cf59fca19cb779c798752f7fbf837f8.zip
cpython-f093007d4cf59fca19cb779c798752f7fbf837f8.tar.gz
cpython-f093007d4cf59fca19cb779c798752f7fbf837f8.tar.bz2
[3.9] Remove duplicated words words (GH-22298). (GH-22299)
(cherry picked from commit 27201cddf3b25be7df25bbe36966531539757d60)
-rw-r--r--Doc/library/tkinter.font.rst4
-rw-r--r--Doc/whatsnew/3.9.rst2
2 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/tkinter.font.rst b/Doc/library/tkinter.font.rst
index 30c1e7b..b0f4505 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 f46bf8c..95188b7 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -901,7 +901,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`)