summaryrefslogtreecommitdiffstats
path: root/Lib/_collections_abc.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-08 18:34:44 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-08 18:34:44 (GMT)
commit88212ae10a779cfae0b81db42b5b71aaf2227915 (patch)
tree8721f89aad49d65c9d83a1c6d82c2e223a91ece9 /Lib/_collections_abc.py
parent2674bc7229b97cd0d94db1588a353461f4a0c00a (diff)
parent3bd9fde4dfa2e8c50ea10c48a819b1dddafb6dc4 (diff)
downloadcpython-88212ae10a779cfae0b81db42b5b71aaf2227915.zip
cpython-88212ae10a779cfae0b81db42b5b71aaf2227915.tar.gz
cpython-88212ae10a779cfae0b81db42b5b71aaf2227915.tar.bz2
Merge from 3.5.
Diffstat (limited to 'Lib/_collections_abc.py')
-rw-r--r--Lib/_collections_abc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/_collections_abc.py b/Lib/_collections_abc.py
index f035970..e309655 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()))