]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix syntax.
authorGeorg Brandl <georg@python.org>
Tue, 6 Apr 2010 20:27:59 +0000 (20:27 +0000)
committerGeorg Brandl <georg@python.org>
Tue, 6 Apr 2010 20:27:59 +0000 (20:27 +0000)
Doc/reference/expressions.rst

index 60ab6ea672e9ffb8ba72892fc20a9e81d7edab0b..4341fceaa85ae63e241b0fdcb75542c21553f7ed 100644 (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
 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
    :attr:`sys.maxsize` an :exc:`OverflowError` exception is raised.