Commit 1e1134a3 authored by Georg Brandl's avatar Georg Brandl

The Integral class does not contain implementations for the bit-shifting operations. (See #3056.)

parent 5e2954e0
...@@ -71,10 +71,10 @@ The numeric tower ...@@ -71,10 +71,10 @@ The numeric tower
.. class:: Integral .. class:: Integral
Subtypes :class:`Rational` and adds a conversion to :class:`int`. Subtypes :class:`Rational` and adds a conversion to :class:`int`. Provides
Provides defaults for :func:`float`, :attr:`~Rational.numerator`, and defaults for :func:`float`, :attr:`~Rational.numerator`, and
:attr:`~Rational.denominator`, and bit-string operations: ``<<``, :attr:`~Rational.denominator`. Adds abstract methods for ``**`` and
``>>``, ``&``, ``^``, ``|``, ``~``. bit-string operations: ``<<``, ``>>``, ``&``, ``^``, ``|``, ``~``.
Notes for type implementors Notes for type implementors
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment