mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
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. ........
This commit is contained in:
parent
90ee4dfef4
commit
505add3ac9
1 changed files with 3 additions and 0 deletions
|
@ -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:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue