Skip to content

Commit 1b48b9c

Browse files
[3.6] Fix line breaks added after hyphens by blurb. (GH-7002) (GH-7051)
Also remove bullet asterisks from IDLE entries. (cherry picked from commit aef639f)
1 parent ab90ea2 commit 1b48b9c

14 files changed

+70
-70
lines changed

Misc/NEWS.d/3.5.0a1.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2706,8 +2706,8 @@ Added support for the "xztar" format in the shutil module.
27062706
.. nonce: ZLsRil
27072707
.. section: Library
27082708
2709-
Don't force 3rd party C extensions to be built with -Werror=declaration-
2710-
after-statement.
2709+
Don't force 3rd party C extensions to be built with
2710+
``-Werror=declaration-after-statement``.
27112711

27122712
..
27132713
@@ -4464,8 +4464,8 @@ Improve repr of inspect.Signature and inspect.Parameter.
44644464
.. nonce: DFMEgN
44654465
.. section: Library
44664466
4467-
Fix inspect.getcallargs() to raise correct TypeError for missing keyword-
4468-
only arguments. Patch by Jeremiah Lowin.
4467+
Fix inspect.getcallargs() to raise correct TypeError for missing
4468+
keyword-only arguments. Patch by Jeremiah Lowin.
44694469

44704470
..
44714471
@@ -5059,8 +5059,8 @@ Anticipated fixes to support OS X versions > 10.9.
50595059
.. nonce: KAl7aO
50605060
.. section: Build
50615061
5062-
Prevent possible segfaults and other random failures of python --generate-
5063-
posix-vars in pybuilddir.txt build target.
5062+
Prevent possible segfaults and other random failures of python
5063+
``--generate-posix-vars`` in pybuilddir.txt build target.
50645064

50655065
..
50665066

Misc/NEWS.d/3.5.0a3.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ Fix the default __sizeof__ implementation for variable-sized objects.
6262
.. nonce: b5M04V
6363
.. section: Library
6464
65-
The groupindex attribute of regular expression pattern object now is non-
66-
modifiable mapping.
65+
The groupindex attribute of regular expression pattern object now is
66+
non-modifiable mapping.
6767

6868
..
6969

Misc/NEWS.d/3.5.0b3.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ by Martin Panter.
110110
.. nonce: aAbWbQ
111111
.. section: Library
112112
113-
Restore semantic round-trip correctness in tokenize/untokenize for tab-
114-
indented blocks.
113+
Restore semantic round-trip correctness in tokenize/untokenize for
114+
tab-indented blocks.
115115

116116
..
117117

Misc/NEWS.d/3.5.0b4.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,8 @@ segment.
224224
.. nonce: hwXwCH
225225
.. section: Library
226226
227-
SMTP.auth() and SMTP.login() now support RFC 4954's optional initial-
228-
response argument to the SMTP AUTH command.
227+
SMTP.auth() and SMTP.login() now support RFC 4954's optional
228+
initial-response argument to the SMTP AUTH command.
229229

230230
..
231231

Misc/NEWS.d/3.5.1rc1.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ twice.
159159
160160
On Solaris 11.3 or newer, os.urandom() now uses the getrandom() function
161161
instead of the getentropy() function. The getentropy() function is blocking
162-
to generate very good quality entropy, os.urandom() doesn't need such high-
163-
quality entropy.
162+
to generate very good quality entropy, os.urandom() doesn't need such
163+
high-quality entropy.
164164

165165
..
166166
@@ -1083,10 +1083,10 @@ them a 'sheet'. Patch by Mark Roseman.
10831083
.. nonce: -j_BV7
10841084
.. section: IDLE
10851085
1086-
Enhance the initial html viewer now used for Idle Help. * Properly indent
1087-
fixed-pitch text (patch by Mark Roseman). * Give code snippet a very Sphinx-
1088-
like light blueish-gray background. * Re-use initial width and height set by
1089-
users for shell and editor. * When the Table of Contents (TOC) menu is used,
1086+
Enhance the initial html viewer now used for Idle Help. Properly indent
1087+
fixed-pitch text (patch by Mark Roseman). Give code snippet a very
1088+
Sphinx-like light blueish-gray background. Re-use initial width and height set by
1089+
users for shell and editor. When the Table of Contents (TOC) menu is used,
10901090
put the section header at the top of the screen.
10911091

10921092
..

Misc/NEWS.d/3.5.2rc1.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -568,9 +568,9 @@ string. Original fix by Ján Janech.
568568
.. section: Library
569569
570570
The "urllib.request" module now percent-encodes non-ASCII bytes found in
571-
redirect target URLs. Some servers send Location header fields with non-
572-
ASCII bytes, but "http.client" requires the request target to be ASCII-
573-
encodable, otherwise a UnicodeEncodeError is raised. Based on patch by
571+
redirect target URLs. Some servers send Location header fields with
572+
non-ASCII bytes, but "http.client" requires the request target to be
573+
ASCII-encodable, otherwise a UnicodeEncodeError is raised. Based on patch by
574574
Christian Heimes.
575575

576576
..
@@ -1952,8 +1952,8 @@ Fix linking extension modules for cross builds. Patch by Xavier de Gaye.
19521952
.. nonce: HDjM4s
19531953
.. section: Build
19541954
1955-
Disable the rules for running _freeze_importlib and pgen when cross-
1956-
compiling. The output of these programs is normally saved with the source
1955+
Disable the rules for running _freeze_importlib and pgen when
1956+
cross-compiling. The output of these programs is normally saved with the source
19571957
code anyway, and is still regenerated when doing a native build. Patch by
19581958
Xavier de Gaye.
19591959

Misc/NEWS.d/3.5.3rc1.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ astral characters. Patch by Xiang Zhang.
8181
.. nonce: RYbEGH
8282
.. section: Core and Builtins
8383
84-
Extra slash no longer added to sys.path components in case of empty compile-
85-
time PYTHONPATH components.
84+
Extra slash no longer added to sys.path components in case of empty
85+
compile-time PYTHONPATH components.
8686

8787
..
8888
@@ -349,8 +349,8 @@ Patch written by Xiang Zhang.
349349
.. section: Core and Builtins
350350
351351
Standard __import__() no longer look up "__import__" in globals or builtins
352-
for importing submodules or "from import". Fixed handling an error of non-
353-
string package name.
352+
for importing submodules or "from import". Fixed handling an error of
353+
non-string package name.
354354

355355
..
356356
@@ -2070,9 +2070,9 @@ Update message in validate_ucrtbase.py
20702070
.. section: Build
20712071
20722072
Cause lack of llvm-profdata tool when using clang as required for PGO
2073-
linking to be a configure time error rather than make time when --with-
2074-
optimizations is enabled. Also improve our ability to find the llvm-
2075-
profdata tool on MacOS and some Linuxes.
2073+
linking to be a configure time error rather than make time when
2074+
``--with-optimizations`` is enabled. Also improve our ability to find the
2075+
llvm-profdata tool on MacOS and some Linuxes.
20762076

20772077
..
20782078

Misc/NEWS.d/3.6.0a1.rst

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -728,8 +728,8 @@ Fixed a number of bugs in UTF-7 decoding of misformed data.
728728
.. section: Core and Builtins
729729
730730
The UTF-8 encoder is now up to 75 times as fast for error handlers:
731-
``ignore``, ``replace``, ``surrogateescape``, ``surrogatepass``. Patch co-
732-
written with Serhiy Storchaka.
731+
``ignore``, ``replace``, ``surrogateescape``, ``surrogatepass``. Patch
732+
co-written with Serhiy Storchaka.
733733

734734
..
735735
@@ -761,8 +761,8 @@ by Serhiy Storchaka.
761761
762762
On Solaris 11.3 or newer, os.urandom() now uses the getrandom() function
763763
instead of the getentropy() function. The getentropy() function is blocking
764-
to generate very good quality entropy, os.urandom() doesn't need such high-
765-
quality entropy.
764+
to generate very good quality entropy, os.urandom() doesn't need such
765+
high-quality entropy.
766766

767767
..
768768
@@ -891,9 +891,9 @@ string. Original fix by Ján Janech.
891891
.. section: Library
892892
893893
The "urllib.request" module now percent-encodes non-ASCII bytes found in
894-
redirect target URLs. Some servers send Location header fields with non-
895-
ASCII bytes, but "http.client" requires the request target to be ASCII-
896-
encodable, otherwise a UnicodeEncodeError is raised. Based on patch by
894+
redirect target URLs. Some servers send Location header fields with
895+
non-ASCII bytes, but "http.client" requires the request target to be
896+
ASCII-encodable, otherwise a UnicodeEncodeError is raised. Based on patch by
897897
Christian Heimes.
898898

899899
..
@@ -3328,10 +3328,10 @@ them a 'sheet'. Patch by Mark Roseman.
33283328
.. nonce: -j_BV7
33293329
.. section: IDLE
33303330
3331-
Enhance the initial html viewer now used for Idle Help. * Properly indent
3332-
fixed-pitch text (patch by Mark Roseman). * Give code snippet a very Sphinx-
3333-
like light blueish-gray background. * Re-use initial width and height set by
3334-
users for shell and editor. * When the Table of Contents (TOC) menu is used,
3331+
Enhance the initial html viewer now used for Idle Help. Properly indent
3332+
fixed-pitch text (patch by Mark Roseman). Give code snippet a very
3333+
Sphinx-like light blueish-gray background. Re-use initial width and height set by
3334+
users for shell and editor. When the Table of Contents (TOC) menu is used,
33353335
put the section header at the top of the screen.
33363336

33373337
..
@@ -3651,8 +3651,8 @@ particular on Android). Patch by Chi Hsuan Yen.
36513651
.. nonce: HDjM4s
36523652
.. section: Build
36533653
3654-
Disable the rules for running _freeze_importlib and pgen when cross-
3655-
compiling. The output of these programs is normally saved with the source
3654+
Disable the rules for running _freeze_importlib and pgen when
3655+
cross-compiling. The output of these programs is normally saved with the source
36563656
code anyway, and is still regenerated when doing a native build. Patch by
36573657
Xavier de Gaye.
36583658

Misc/NEWS.d/3.6.0b1.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -507,8 +507,8 @@ expression.
507507
.. nonce: TJ779X
508508
.. section: Library
509509
510-
xmlrpc now supports unmarshalling additional data types used by Apache XML-
511-
RPC implementation for numerics and None.
510+
xmlrpc now supports unmarshalling additional data types used by Apache
511+
XML-RPC implementation for numerics and None.
512512

513513
..
514514
@@ -1416,9 +1416,9 @@ platforms.
14161416
.. section: Build
14171417
14181418
Cause lack of llvm-profdata tool when using clang as required for PGO
1419-
linking to be a configure time error rather than make time when --with-
1420-
optimizations is enabled. Also improve our ability to find the llvm-
1421-
profdata tool on MacOS and some Linuxes.
1419+
linking to be a configure time error rather than make time when
1420+
``--with-optimizations`` is enabled. Also improve our ability to find the
1421+
llvm-profdata tool on MacOS and some Linuxes.
14221422

14231423
..
14241424

Misc/NEWS.d/3.6.0b4.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ astral characters. Patch by Xiang Zhang.
5454
.. nonce: RYbEGH
5555
.. section: Core and Builtins
5656
57-
Extra slash no longer added to sys.path components in case of empty compile-
58-
time PYTHONPATH components.
57+
Extra slash no longer added to sys.path components in case of empty
58+
compile-time PYTHONPATH components.
5959

6060
..
6161

0 commit comments

Comments
 (0)