[Python-checkins] cpython (merge 3.5 -> 3.6): Merge from 3.5.

serhiy.storchaka python-checkins at python.org
Sat Oct 8 15:08:31 EDT 2016


https://hg.python.org/cpython/rev/f06eb6dd216f
changeset:   104376:f06eb6dd216f
branch:      3.6
parent:      104373:4ed634870a9a
parent:      104375:ee049edc3fff
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Sat Oct 08 21:34:44 2016 +0300
summary:
  Merge from 3.5.

files:
  Lib/_collections_abc.py |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Lib/_collections_abc.py b/Lib/_collections_abc.py
--- a/Lib/_collections_abc.py
+++ b/Lib/_collections_abc.py
@@ -29,8 +29,8 @@
 # so that they will pass tests like:
 #       it = iter(somebytearray)
 #       assert isinstance(it, Iterable)
-# Note:  in other implementations, these types many not be distinct
-# and they make have their own implementation specific types that
+# Note:  in other implementations, these types might not be distinct
+# and they may have their own implementation specific types that
 # are not included on this list.
 bytes_iterator = type(iter(b''))
 bytearray_iterator = type(iter(bytearray()))

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


More information about the Python-checkins mailing list