[Python-checkins] cpython (3.5): Issue #26548: Minor fix to awkward wording in docs

raymond.hettinger python-checkins at python.org
Sun Mar 13 01:58:50 EST 2016


https://hg.python.org/cpython/rev/b9256d5f1ab4
changeset:   100508:b9256d5f1ab4
branch:      3.5
parent:      100506:7617f5b3f263
user:        Raymond Hettinger <python at rcn.com>
date:        Sat Mar 12 22:58:24 2016 -0800
summary:
  Issue #26548:  Minor fix to awkward wording in docs

files:
  Doc/library/stdtypes.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -397,8 +397,8 @@
    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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list