Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
address review: don't repeat description of digit group separator
  • Loading branch information
skirpichev committed Aug 2, 2025
commit 4aae176256d40bae94e316fa5496c7564eb93671
6 changes: 3 additions & 3 deletions Doc/library/string.rst
Original file line number Diff line number Diff line change
Expand Up @@ -431,9 +431,9 @@ If not specified, then the field width will be determined by the content.
When no explicit alignment is given, preceding the *width* field by a zero
(``'0'``) character enables sign-aware zero-padding for numeric types,
excluding :class:`complex`. This is equivalent to a *fill* character of
``'0'`` with an *alignment* type of ``'='``. If digit group separators of the
integral part of a number are used (as specified either by the ``','`` or ``'_'``
option), they are also placed between leading zeros.
``'0'`` with an *alignment* type of ``'='``. If the *grouping* option for
the integral part is used, a digit group separator is also inserted between
leading zeros.

.. versionchanged:: 3.10
Preceding the *width* field by ``'0'`` no longer affects the default
Expand Down
Loading