Skip to content
Closed
Changes from all commits
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
5 changes: 3 additions & 2 deletions Doc/library/functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,10 @@ are always available. They are listed here in alphabetical order.
>>> f'{14:#b}', f'{14:b}'
('0b1110', '1110')

See also :func:`enum.bin` to represent negative values as twos-complement.
See also :func:`format` for more information on binary representations.

See also :func:`format` for more information.
Negative integers are represented with a leading ``'-'`` sign rather than
using two's complement form.


.. class:: bool(object=False, /)
Expand Down
Loading