[Python-checkins] r79853 - in python/branches/py3k: Doc/reference/expressions.rst

mark.dickinson python-checkins at python.org
Tue Apr 6 20:22:06 CEST 2010


Author: mark.dickinson
Date: Tue Apr  6 20:22:06 2010
New Revision: 79853

Log:
Merged revisions 79852 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r79852 | mark.dickinson | 2010-04-06 19:20:11 +0100 (Tue, 06 Apr 2010) | 1 line
  
  Issue #8259: Clarify that there's an upper bound on the right-hand operand of a shift operator.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Doc/reference/expressions.rst

Modified: python/branches/py3k/Doc/reference/expressions.rst
==============================================================================
--- python/branches/py3k/Doc/reference/expressions.rst	(original)
+++ python/branches/py3k/Doc/reference/expressions.rst	Tue Apr  6 20:22:06 2010
@@ -914,6 +914,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)``.
 
+.. 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.
 
 .. _bitwise:
 


More information about the Python-checkins mailing list