Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d0b4428

Browse files
Fix the indentation in the documentation of bin() and hash() (GH-7998)
(cherry picked from commit bda9c3e) Co-authored-by: Andrés Delfino <[email protected]>
1 parent e2c5a75 commit d0b4428

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Doc/library/functions.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ are always available. They are listed here in alphabetical order.
9898
>>> f'{14:#b}', f'{14:b}'
9999
('0b1110', '1110')
100100

101-
See also :func:`format` for more information.
101+
See also :func:`format` for more information.
102102

103103

104104
.. class:: bool([x])
@@ -646,11 +646,11 @@ are always available. They are listed here in alphabetical order.
646646
dictionary lookup. Numeric values that compare equal have the same hash
647647
value (even if they are of different types, as is the case for 1 and 1.0).
648648

649-
.. note::
649+
.. note::
650650

651-
For objects with custom :meth:`__hash__` methods, note that :func:`hash`
652-
truncates the return value based on the bit width of the host machine.
653-
See :meth:`__hash__` for details.
651+
For objects with custom :meth:`__hash__` methods, note that :func:`hash`
652+
truncates the return value based on the bit width of the host machine.
653+
See :meth:`__hash__` for details.
654654

655655
.. function:: help([object])
656656

0 commit comments

Comments
 (0)