diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-03-28 19:14:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-28 19:14:26 (GMT) |
commit | bac2d5ba30339298db7d4caa9c8cd31d807cf081 (patch) | |
tree | d08e103d7d7f2ef41b56c2e7d8c360663bf7780e /Misc/NEWS.d | |
parent | aa50bf08e64f49d57917ab0b1aadf4308a3168a6 (diff) | |
download | cpython-bac2d5ba30339298db7d4caa9c8cd31d807cf081.zip cpython-bac2d5ba30339298db7d4caa9c8cd31d807cf081.tar.gz cpython-bac2d5ba30339298db7d4caa9c8cd31d807cf081.tar.bz2 |
Fix duplicating words words. (GH-6296)
Most of them have been added in 3.7.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-01-18-13-09-00.bpo-32585.qpeijr.rst | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-03-18-17-38-48.bpo-32953.t8WAWN.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-01-18-13-09-00.bpo-32585.qpeijr.rst b/Misc/NEWS.d/next/Library/2018-01-18-13-09-00.bpo-32585.qpeijr.rst index c504e8b..0a60204 100644 --- a/Misc/NEWS.d/next/Library/2018-01-18-13-09-00.bpo-32585.qpeijr.rst +++ b/Misc/NEWS.d/next/Library/2018-01-18-13-09-00.bpo-32585.qpeijr.rst @@ -1 +1 @@ -Add Ttk spinbox widget to to tkinter.ttk. Patch by Alan D Moore. +Add Ttk spinbox widget to :mod:`tkinter.ttk`. Patch by Alan D Moore. diff --git a/Misc/NEWS.d/next/Library/2018-03-18-17-38-48.bpo-32953.t8WAWN.rst b/Misc/NEWS.d/next/Library/2018-03-18-17-38-48.bpo-32953.t8WAWN.rst index fbea34a..03c1162 100644 --- a/Misc/NEWS.d/next/Library/2018-03-18-17-38-48.bpo-32953.t8WAWN.rst +++ b/Misc/NEWS.d/next/Library/2018-03-18-17-38-48.bpo-32953.t8WAWN.rst @@ -1,4 +1,4 @@ If a non-dataclass inherits from a frozen dataclass, allow attributes to be -added to the derived class. Only attributes from from the frozen dataclass +added to the derived class. Only attributes from the frozen dataclass cannot be assigned to. Require all dataclasses in a hierarchy to be either all frozen or all non-frozen. |