Skip to content

Commit 9ec3948

Browse files
committed
Update What's New in Python 3.15
Reformat also the doc to fit into 80 columns.
1 parent a8e4a4e commit 9ec3948

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

Doc/library/sys.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -694,9 +694,10 @@ always available. Unless explicitly noted otherwise, all variables are read-only
694694
A :term:`named tuple` holding information about the float type. It
695695
contains low level information about the precision and internal
696696
representation. The values correspond to the various floating-point
697-
constants defined by C implementation and in the standard header file :file:`float.h` for the 'C'
698-
programming language; see Annex F and section 5.2.4.2.2 of the 1999 ISO/IEC C standard
699-
[C99]_, 'Characteristics of floating types', for details.
697+
constants defined by C implementation and in the standard header file
698+
:file:`float.h` for the 'C' programming language; see Annex F and section
699+
5.2.4.2.2 of the 1999 ISO/IEC C standard [C99]_, 'Characteristics of
700+
floating types', for details.
700701

701702
.. list-table:: Attributes of the :data:`!float_info` :term:`named tuple`
702703
:header-rows: 1

Doc/whatsnew/3.15.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -703,6 +703,11 @@ sys
703703
* Add :data:`sys.abi_info` namespace to improve access to ABI information.
704704
(Contributed by Klaus Zimmermann in :gh:`137476`.)
705705

706+
* Add :data:`sys.float_info.iec_60559 <sys.float_info>`: a boolean flag,
707+
indicating support the IEC 60559 floating-point standard (as specified by the
708+
Annex F of C99).
709+
(Contributed by Sergey B Kirpichev in :gh:`138580`.)
710+
706711

707712
tarfile
708713
-------
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
Add a boolean flag, indicating support the IEC 60559 floating-point standard
2-
(as specified by the Annex F of C99). Patch by Sergey B Kirpichev.
1+
Add :data:`sys.float_info.iec_60559 <sys.float_info>`: a boolean flag,
2+
indicating support the IEC 60559 floating-point standard (as specified by the
3+
Annex F of C99). Patch by Sergey B Kirpichev.

0 commit comments

Comments
 (0)