Commit 58aac9fb authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #28376: Fixed typos.

Based on patch by Oren Milman.
parent e1edc4ff
......@@ -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()))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment