Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 054d3cd

Browse files
Fixed doubled spaces in Misc/NEWS.
1 parent 9a47ed8 commit 054d3cd

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

Misc/NEWS

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Core and Builtins
3232

3333
- Issue #24102: Fixed exception type checking in standard error handlers.
3434

35-
- Issue #23757: PySequence_Tuple() incorrectly called the concrete list API
35+
- Issue #23757: PySequence_Tuple() incorrectly called the concrete list API
3636
when the data was a list subclass.
3737

3838
- Issue #24407: Fix crash when dict is mutated while being updated.
@@ -758,7 +758,7 @@ IDLE
758758
- Issue #16233: A module browser (File : Class Browser, Alt+C) requires a
759759
editor window with a filename. When Class Browser is requested otherwise,
760760
from a shell, output window, or 'Untitled' editor, Idle no longer displays
761-
an error box. It now pops up an Open Module box (Alt+M). If a valid name
761+
an error box. It now pops up an Open Module box (Alt+M). If a valid name
762762
is entered and a module is opened, a corresponding browser is also opened.
763763

764764
- Issue #4832: Save As to type Python files automatically adds .py to the
@@ -1009,7 +1009,7 @@ Library
10091009
- Issue #21448: Changed FeedParser feed() to avoid O(N**2) behavior when
10101010
parsing long line. Original patch by Raymond Hettinger.
10111011

1012-
- Issue #22184: The functools LRU Cache decorator factory now gives an earlier
1012+
- Issue #22184: The functools LRU Cache decorator factory now gives an earlier
10131013
and clearer error message when the user forgets the required parameters.
10141014

10151015
- Issue #17923: glob() patterns ending with a slash no longer match non-dirs on
@@ -1051,7 +1051,7 @@ Library
10511051
- Issue #21044: tarfile.open() now handles fileobj with an integer 'name'
10521052
attribute. Based on patch by Antoine Pietri.
10531053

1054-
- Issue #21867: Prevent turtle crash due to invalid undo buffer size.
1054+
- Issue #21867: Prevent turtle crash due to invalid undo buffer size.
10551055

10561056
- Issue #19076: Don't pass the redundant 'file' argument to self.error().
10571057

@@ -1097,16 +1097,16 @@ Library
10971097

10981098
- Issue #21491: socketserver: Fix a race condition in child processes reaping.
10991099

1100-
- Issue #21832: Require named tuple inputs to be exact strings.
1100+
- Issue #21832: Require named tuple inputs to be exact strings.
11011101

1102-
- Issue #19145: The times argument for itertools.repeat now handles
1102+
- Issue #19145: The times argument for itertools.repeat now handles
11031103
negative values the same way for keyword arguments as it does for
11041104
positional arguments.
11051105

11061106
- Issue #21812: turtle.shapetransform did not tranform the turtle on the
11071107
first call. (Issue identified and fixed by Lita Cho.)
11081108

1109-
- Issue #21635: The difflib SequenceMatcher.get_matching_blocks() method
1109+
- Issue #21635: The difflib SequenceMatcher.get_matching_blocks() method
11101110
cache didn't match the actual result. The former was a list of tuples
11111111
and the latter was a list of named tuples.
11121112

@@ -1167,7 +1167,7 @@ Library
11671167
- Issue #14710: pkgutil.find_loader() no longer raises an exception when a
11681168
module doesn't exist.
11691169

1170-
- Issue #21481: Argparse equality and inequality tests now return
1170+
- Issue #21481: Argparse equality and inequality tests now return
11711171
NotImplemented when comparing to an unknown type.
11721172

11731173
- Issue #8743: Fix interoperability between set objects and the
@@ -1253,7 +1253,7 @@ IDLE
12531253
Tests
12541254
-----
12551255

1256-
- Issue #22166: with the assistance of a new internal _codecs._forget_codec
1256+
- Issue #22166: With the assistance of a new internal _codecs._forget_codec
12571257
helping function, test_codecs now clears the encoding caches to avoid the
12581258
appearance of a reference leak
12591259

@@ -1425,7 +1425,7 @@ Library
14251425
- Issue #21088: Bugfix for curses.window.addch() regression in 3.4.0.
14261426
In porting to Argument Clinic, the first two arguments were reversed.
14271427

1428-
- Issue #21469: Reduced the risk of false positives in robotparser by
1428+
- Issue #21469: Reduced the risk of false positives in robotparser by
14291429
checking to make sure that robots.txt has been read or does not exist
14301430
prior to returning True in can_fetch().
14311431

@@ -2244,7 +2244,7 @@ Tools/Demos
22442244
"{dirname}/clinic/{basename}.h".
22452245

22462246
- Issue #20390: Argument Clinic's "class" directive syntax has been extended
2247-
with two new required arguments: "typedef" and "type_object".
2247+
with two new required arguments: "typedef" and "type_object".
22482248

22492249
- Issue #20390: Argument Clinic: If __new__ or __init__ functions didn't use
22502250
kwargs (or args), the PyArg_NoKeywords (or PyArg_NoPositional) calls
@@ -3311,10 +3311,10 @@ Library
33113311
- Issue #9548: Add a minimal "_bootlocale" module that is imported by the
33123312
_io module instead of the full locale module.
33133313

3314-
- Issue #18764: remove the 'print' alias for the PDB 'p' command so that it no
3314+
- Issue #18764: Remove the 'print' alias for the PDB 'p' command so that it no
33153315
longer shadows the print function.
33163316

3317-
- Issue #19158: a rare race in BoundedSemaphore could allow .release() too
3317+
- Issue #19158: A rare race in BoundedSemaphore could allow .release() too
33183318
often.
33193319

33203320
- Issue #15805: Add contextlib.redirect_stdout().
@@ -7935,7 +7935,7 @@ Core and Builtins
79357935
and bytearray.split may now be passed as keyword arguments.
79367936

79377937
- Issue #13012: The 'keepends' parameter to str.splitlines may now be passed
7938-
as a keyword argument: "my_string.splitlines(keepends=True)". The same
7938+
as a keyword argument: "my_string.splitlines(keepends=True)". The same
79397939
change also applies to bytes.splitlines and bytearray.splitlines.
79407940

79417941
- Issue #7732: Don't open a directory as a file anymore while importing a
@@ -8926,7 +8926,7 @@ Library
89268926
of the text mode (using the locale encoding) to avoid encoding issues.
89278927

89288928
- Issue #12147: Adjust the new-in-3.2 smtplib.send_message method for better
8929-
conformance to the RFCs: correctly handle Sender and Resent- headers.
8929+
conformance to the RFCs: correctly handle Sender and Resent- headers.
89308930

89318931
- Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed by
89328932
the garbage collector while the Heap lock is held.
@@ -9330,7 +9330,7 @@ Library
93309330
multipart subparts with an 8-bit CTE into unicode instead of preserving the
93319331
bytes.
93329332

9333-
- Issue #1690608: email.util.formataddr is now RFC 2047 aware: it now has a
9333+
- Issue #1690608: email.util.formataddr is now RFC 2047 aware: it now has a
93349334
charset parameter that defaults to utf-8 and is used as the charset for RFC
93359335
2047 encoding when the realname contains non-ASCII characters.
93369336

@@ -9925,7 +9925,7 @@ Tests
99259925
Patch by Garrett Cooper.
99269926

99279927
- Issue #10736: Fix test_ttk test_widgets failures with Cocoa Tk 8.5.9
9928-
2.8 + on Mac OS X. (Patch by Ronald Oussoren)
9928+
2.8+ on Mac OS X. (Patch by Ronald Oussoren)
99299929

99309930
- Issue #12057: Add tests for ISO 2022 codecs (iso2022_jp, iso2022_jp_2,
99319931
iso2022_kr).

0 commit comments

Comments
 (0)