Skip to content

Commit a0157b5

Browse files
Miscellaneous minor fixes of Misc/NEWS formatting. (#1002)
1 parent bae6881 commit a0157b5

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

Misc/NEWS

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ Library
325325
Now using them emits a deprecation warning.
326326

327327
- bpo-27863: Fixed multiple crashes in ElementTree caused by race conditions
328-
and wrong types.
328+
and wrong types.
329329

330330
- bpo-25996: Added support of file descriptors in os.scandir() on Unix.
331331
os.fwalk() is sped up by 2 times by using os.scandir().
@@ -527,7 +527,7 @@ Library
527527
- Issue #28427: old keys should not remove new values from
528528
WeakValueDictionary when collecting from another thread.
529529

530-
- Issue 28923: Remove editor artifacts from Tix.py.
530+
- Issue #28923: Remove editor artifacts from Tix.py.
531531

532532
- Issue #28871: Fixed a crash when deallocate deep ElementTree.
533533

@@ -1114,7 +1114,7 @@ Library
11141114
- Issue #29085: Allow random.Random.seed() to use high quality OS randomness
11151115
rather than the pid and time.
11161116

1117-
- Issue 28923: Remove editor artifacts from Tix.py.
1117+
- Issue #28923: Remove editor artifacts from Tix.py.
11181118

11191119
- Issue #29055: Neaten-up empty population error on random.choice()
11201120
by suppressing the upstream exception.
@@ -1834,7 +1834,7 @@ Core and Builtins
18341834
alpha releases, where backslashes are allowed anywhere in an
18351835
f-string. Also, require that expressions inside f-strings be
18361836
enclosed within literal braces, and not escapes like
1837-
f'\x7b"hi"\x7d'.
1837+
``f'\x7b"hi"\x7d'``.
18381838

18391839
- Issue #28046: Remove platform-specific directories from sys.path.
18401840

@@ -2053,7 +2053,7 @@ Library
20532053
- Issue #24277: The new email API is no longer provisional, and the docs
20542054
have been reorganized and rewritten to emphasize the new API.
20552055

2056-
- Issue #22450: urllib now includes an "Accept: */*" header among the
2056+
- Issue #22450: urllib now includes an ``Accept: */*`` header among the
20572057
default headers. This makes the results of REST API requests more
20582058
consistent and predictable especially when proxy servers are involved.
20592059

@@ -2072,9 +2072,9 @@ Library
20722072
characters, not on arbitrary unicode line breaks. This also fixes a bug in
20732073
HTTP header parsing.
20742074

2075-
- Issue 27331: The email.mime classes now all accept an optional policy keyword.
2075+
- Issue #27331: The email.mime classes now all accept an optional policy keyword.
20762076

2077-
- Issue 27988: Fix email iter_attachments incorrect mutation of payload list.
2077+
- Issue #27988: Fix email iter_attachments incorrect mutation of payload list.
20782078

20792079
- Issue #16113: Add SHA-3 and SHAKE support to hashlib module.
20802080

@@ -3182,7 +3182,7 @@ Core and Builtins
31823182
in ``def f(): 1.0``.
31833183

31843184
- Issue #4806: Avoid masking the original TypeError exception when using star
3185-
(*) unpacking in function calls. Based on patch by Hagen Fürstenau and
3185+
(``*``) unpacking in function calls. Based on patch by Hagen Fürstenau and
31863186
Daniel Urban.
31873187

31883188
- Issue #26146: Add a new kind of AST node: ``ast.Constant``. It can be used
@@ -3740,7 +3740,7 @@ Library
37403740
- Issue #25672: In the ssl module, enable the SSL_MODE_RELEASE_BUFFERS mode
37413741
option if it is safe to do so.
37423742

3743-
- Issue #26012: Don't traverse into symlinks for ** pattern in
3743+
- Issue #26012: Don't traverse into symlinks for ``**`` pattern in
37443744
pathlib.Path.[r]glob().
37453745

37463746
- Issue #24120: Ignore PermissionError when traversing a tree with
@@ -3876,7 +3876,7 @@ Library
38763876

38773877
- Issue #25584: Added "escape" to the __all__ list in the glob module.
38783878

3879-
- Issue #25584: Fixed recursive glob() with patterns starting with '\*\*'.
3879+
- Issue #25584: Fixed recursive glob() with patterns starting with ``**``.
38803880

38813881
- Issue #25446: Fix regression in smtplib's AUTH LOGIN support.
38823882

@@ -4511,7 +4511,7 @@ Library
45114511
- Issue #28427: old keys should not remove new values from
45124512
WeakValueDictionary when collecting from another thread.
45134513

4514-
- Issue 28923: Remove editor artifacts from Tix.py.
4514+
- Issue #28923: Remove editor artifacts from Tix.py.
45154515

45164516
- Issue #28871: Fixed a crash when deallocate deep ElementTree.
45174517

@@ -4634,7 +4634,7 @@ Library
46344634

46354635
- Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp().
46364636

4637-
- Issue #19003:m email.generator now replaces only \r and/or \n line
4637+
- Issue #19003:m email.generator now replaces only ``\r`` and/or ``\n`` line
46384638
endings, per the RFC, instead of all unicode line endings.
46394639

46404640
- Issue #28019: itertools.count() no longer rounds non-integer step in range
@@ -4657,7 +4657,7 @@ Library
46574657
- Issue #27445: Don't pass str(_charset) to MIMEText.set_payload().
46584658
Patch by Claude Paroz.
46594659

4660-
- Issue #22450: urllib now includes an "Accept: */*" header among the
4660+
- Issue #22450: urllib now includes an ``Accept: */*`` header among the
46614661
default headers. This makes the results of REST API requests more
46624662
consistent and predictable especially when proxy servers are involved.
46634663

@@ -4672,7 +4672,7 @@ Library
46724672
characters, not on arbitrary unicode line breaks. This also fixes a bug in
46734673
HTTP header parsing.
46744674

4675-
- Issue 27988: Fix email iter_attachments incorrect mutation of payload list.
4675+
- Issue #27988: Fix email iter_attachments incorrect mutation of payload list.
46764676

46774677
- Issue #27691: Fix ssl module's parsing of GEN_RID subject alternative name
46784678
fields in X.509 certs.
@@ -5123,7 +5123,7 @@ Core and Builtins
51235123
cookie names.
51245124

51255125
- Issue #4806: Avoid masking the original TypeError exception when using star
5126-
(*) unpacking in function calls. Based on patch by Hagen Fürstenau and
5126+
(``*``) unpacking in function calls. Based on patch by Hagen Fürstenau and
51275127
Daniel Urban.
51285128

51295129
- Issue #27138: Fix the doc comment for FileFinder.find_spec().
@@ -5503,7 +5503,7 @@ Library
55035503
- Issue #25672: In the ssl module, enable the SSL_MODE_RELEASE_BUFFERS mode
55045504
option if it is safe to do so.
55055505

5506-
- Issue #26012: Don't traverse into symlinks for ** pattern in
5506+
- Issue #26012: Don't traverse into symlinks for ``**`` pattern in
55075507
pathlib.Path.[r]glob().
55085508

55095509
- Issue #24120: Ignore PermissionError when traversing a tree with
@@ -5913,7 +5913,7 @@ Library
59135913

59145914
- Issue #25584: Added "escape" to the __all__ list in the glob module.
59155915

5916-
- Issue #25584: Fixed recursive glob() with patterns starting with '\*\*'.
5916+
- Issue #25584: Fixed recursive glob() with patterns starting with ``**``.
59175917

59185918
- Issue #25446: Fix regression in smtplib's AUTH LOGIN support.
59195919

@@ -7456,7 +7456,7 @@ Library
74567456

74577457
- Issue #23521: Corrected pure python implementation of timedelta division.
74587458

7459-
* Eliminated OverflowError from timedelta * float for some floats;
7459+
* Eliminated OverflowError from ``timedelta * float`` for some floats;
74607460
* Corrected rounding in timedlta true division.
74617461

74627462
- Issue #21619: Popen objects no longer leave a zombie after exit in the with
@@ -8255,7 +8255,7 @@ Library
82558255
character instead of truncating it. Based on patch by Victor Stinner.
82568256

82578257
- Issue #13968: The glob module now supports recursive search in
8258-
subdirectories using the "**" pattern.
8258+
subdirectories using the ``**`` pattern.
82598259

82608260
- Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command with
82618261
empty string or tuple argument.

0 commit comments

Comments
 (0)