diff options
author | Julien Palard <julien@palard.fr> | 2019-05-09 19:52:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-09 19:52:32 (GMT) |
commit | 137be34180a20dba53948d126b961069f299f153 (patch) | |
tree | a91ab5d8b46f39f705ee40d9b5f014f6106eda0a /Misc/NEWS.d/3.7.0b1.rst | |
parent | a076e4f5e42b85664693191d04cfb33e2f9acfa5 (diff) | |
download | cpython-137be34180a20dba53948d126b961069f299f153.zip cpython-137be34180a20dba53948d126b961069f299f153.tar.gz cpython-137be34180a20dba53948d126b961069f299f153.tar.bz2 |
bpo-32523: Simplifying news entries with multiple paragraphs. (GH-8154)
Having multiple paragraphs in a few news entry lead to inconsistent
spacing while rendered in HTML by mixing "visually compact lists"
(when no entry of the whole list contains multiple paragraphs) and
"sparse lists" (when at least one do).
Diffstat (limited to 'Misc/NEWS.d/3.7.0b1.rst')
-rw-r--r-- | Misc/NEWS.d/3.7.0b1.rst | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Misc/NEWS.d/3.7.0b1.rst b/Misc/NEWS.d/3.7.0b1.rst index db4adfb..d1beec9 100644 --- a/Misc/NEWS.d/3.7.0b1.rst +++ b/Misc/NEWS.d/3.7.0b1.rst @@ -77,7 +77,6 @@ used to test that string contains only ASCII characters. .. section: Core and Builtins Enforce :pep:`479` for all code. - This means that manually raising a StopIteration exception from a generator is prohibited for all code, regardless of whether 'from __future__ import generator_stop' was used or not. @@ -648,7 +647,6 @@ locale to the ``LC_NUMERIC`` locale to decode ``decimal_point`` and ``thousands_sep`` byte strings if they are non-ASCII or longer than 1 byte, and the ``LC_NUMERIC`` locale is different than the ``LC_CTYPE`` locale. This temporary change affects other threads. - Same change for the :meth:`str.format` method when formatting a number (:class:`int`, :class:`float`, :class:`float` and subclasses) with the ``n`` type (ex: ``'{:n}'.format(1234)``). @@ -747,7 +745,6 @@ Add a new "_xxsubinterpreters" extension module that exposes the existing subinterpreter C-API and a new cross-interpreter data sharing mechanism. The module is primarily intended for more thorough testing of the existing subinterpreter support. - Note that the _xxsubinterpreters module has been removed in 3.7.0rc1. .. |