Fix syntax.

This commit is contained in:
Georg Brandl 2010-04-06 20:27:59 +00:00
parent 99e73f9145
commit fb12044392
1 changed files with 3 additions and 1 deletions

View File

@ -1000,7 +1000,9 @@ A right shift by *n* bits is defined as division by ``pow(2, n)``. A left shift
by *n* bits is defined as multiplication with ``pow(2, n)``. Negative shift by *n* bits is defined as multiplication with ``pow(2, n)``. Negative shift
counts raise a :exc:`ValueError` exception. counts raise a :exc:`ValueError` exception.
.. note:: In the current implementation, the right-hand operand is required .. note::
In the current implementation, the right-hand operand is required
to be at most :attr:`sys.maxsize`. If the right-hand operand is larger than to be at most :attr:`sys.maxsize`. If the right-hand operand is larger than
:attr:`sys.maxsize` an :exc:`OverflowError` exception is raised. :attr:`sys.maxsize` an :exc:`OverflowError` exception is raised.