diff options
author | Raymond Hettinger <python@rcn.com> | 2016-03-13 06:58:44 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2016-03-13 06:58:44 (GMT) |
commit | 7dc830e988b80fcdb4a3f67c4d86d4a5c70aaf85 (patch) | |
tree | d46589e887b36f883b495f4c86a064144ce14dfc /Doc | |
parent | 8d9bcb5d627df6298abea3c32b6c62d5bcaa7010 (diff) | |
parent | 4d02896609f6c92458ce292bf3aa77cfd403dee3 (diff) | |
download | cpython-7dc830e988b80fcdb4a3f67c4d86d4a5c70aaf85.zip cpython-7dc830e988b80fcdb4a3f67c4d86d4a5c70aaf85.tar.gz cpython-7dc830e988b80fcdb4a3f67c4d86d4a5c70aaf85.tar.bz2 |
merge
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/stdtypes.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 2ec6546..43a3cda 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -397,8 +397,8 @@ Bitwise Operations on Integer Types operator: >> Bitwise operations only make sense for integers. Negative numbers are treated -as their 2's complement value (this assumes a sufficiently large number of bits -that no overflow occurs during the operation). +as their 2's complement value (this assumes that there are enough bits so that +no overflow occurs during the operation). The priorities of the binary bitwise operations are all lower than the numeric operations and higher than the comparisons; the unary operation ``~`` has the |