diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-08 21:35:07 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-08 21:35:07 +0300 |
commit | 1d56113ed7e3fdab6dc3b644b886d6f720e6cb54 (patch) | |
tree | e986fd9883551655f0ca908f6e12d42875cfcb84 | |
parent | f2abc8f2c2cefeaf5b4e0d9a0774d68ccae3d253 (diff) | |
parent | 88212ae10a779cfae0b81db42b5b71aaf2227915 (diff) | |
download | cpython-git-1d56113ed7e3fdab6dc3b644b886d6f720e6cb54.tar.gz |
Merge from 3.6.
-rw-r--r-- | Lib/_collections_abc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/_collections_abc.py b/Lib/_collections_abc.py index f035970a8e..e309655164 100644 --- a/Lib/_collections_abc.py +++ b/Lib/_collections_abc.py @@ -29,8 +29,8 @@ __name__ = "collections.abc" # 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())) |