[Python-checkins] cpython (merge 3.5 -> default): merge

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


https://hg.python.org/cpython/rev/fe3f304ff666
changeset:   100509:fe3f304ff666
parent:      100507:f426178c9d6c
parent:      100508:b9256d5f1ab4
user:        Raymond Hettinger <python at rcn.com>
date:        Sat Mar 12 22:58:44 2016 -0800
summary:
  merge

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