summaryrefslogtreecommitdiff
path: root/Doc/reference
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-04-06 18:22:06 +0000
committerMark Dickinson <dickinsm@gmail.com>2010-04-06 18:22:06 +0000
commit6d8f11b94af5fd2ec120c0ba7a5459d6ca1aca1a (patch)
treee0e49ea7afe825cd8054ac8e76f7a6ebe37a0f00 /Doc/reference
parent1bb7b065b53382b56f28ffb4e33066bb993f4ef3 (diff)
downloadcpython-6d8f11b94af5fd2ec120c0ba7a5459d6ca1aca1a.tar.gz
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. ........
Diffstat (limited to 'Doc/reference')
-rw-r--r--Doc/reference/expressions.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst
index bb25956dbc..07647b3a34 100644
--- a/Doc/reference/expressions.rst
+++ b/Doc/reference/expressions.rst
@@ -914,6 +914,9 @@ the left or right by the number of bits given by the second argument.
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: