[Python-checkins] r79862 - python/trunk/Doc/reference/expressions.rst

georg.brandl python-checkins at python.org
Tue Apr 6 22:27:59 CEST 2010


Author: georg.brandl
Date: Tue Apr  6 22:27:59 2010
New Revision: 79862

Log:
Fix syntax.

Modified:
   python/trunk/Doc/reference/expressions.rst

Modified: python/trunk/Doc/reference/expressions.rst
==============================================================================
--- python/trunk/Doc/reference/expressions.rst	(original)
+++ python/trunk/Doc/reference/expressions.rst	Tue Apr  6 22:27:59 2010
@@ -1000,7 +1000,9 @@
 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.
 


More information about the Python-checkins mailing list