[Python-checkins] cpython (3.5): Issue #28376: Fixed typos.

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


https://hg.python.org/cpython/rev/ee049edc3fff
changeset:   104375:ee049edc3fff
branch:      3.5
parent:      104365:bbaf6c928526
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Sat Oct 08 21:33:59 2016 +0300
summary:
  Issue #28376: Fixed typos.
Based on patch by Oren Milman.

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