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

Skip to content

Commit a730279

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 00e0524 commit a730279

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])
@@ -632,11 +632,11 @@ are always available. They are listed here in alphabetical order.
632632
dictionary lookup. Numeric values that compare equal have the same hash
633633
value (even if they are of different types, as is the case for 1 and 1.0).
634634

635-
.. note::
635+
.. note::
636636

637-
For objects with custom :meth:`__hash__` methods, note that :func:`hash`
638-
truncates the return value based on the bit width of the host machine.
639-
See :meth:`__hash__` for details.
637+
For objects with custom :meth:`__hash__` methods, note that :func:`hash`
638+
truncates the return value based on the bit width of the host machine.
639+
See :meth:`__hash__` for details.
640640

641641
.. function:: help([object])
642642

0 commit comments

Comments
 (0)