diff options
author | Raymond Hettinger <python@rcn.com> | 2016-03-13 06:58:24 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2016-03-13 06:58:24 (GMT) |
commit | 4d02896609f6c92458ce292bf3aa77cfd403dee3 (patch) | |
tree | cc3bd547f443b0122b9f6a78f70cd5bd530964c4 /Doc | |
parent | d3722e7b6f9f4a40bec7476479aef9f84395de2e (diff) | |
download | cpython-4d02896609f6c92458ce292bf3aa77cfd403dee3.zip cpython-4d02896609f6c92458ce292bf3aa77cfd403dee3.tar.gz cpython-4d02896609f6c92458ce292bf3aa77cfd403dee3.tar.bz2 |
Issue #26548: Minor fix to awkward wording in docs
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 a0f98fd..1a1b74c 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 |