From: Jonathan Dung Date: Fri, 26 Jun 2026 23:27:47 +0000 (+0800) Subject: Remove commented out code X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1812162f81ef034616294ec9ee53e951f99c9582;p=thirdparty%2FPython%2Fcpython.git Remove commented out code --- diff --git a/Lib/_collections_abc.py b/Lib/_collections_abc.py index 0e1d8ccf44a4..24d08605429d 100644 --- a/Lib/_collections_abc.py +++ b/Lib/_collections_abc.py @@ -67,7 +67,6 @@ __name__ = "collections.abc" # are not included on this list. bytes_iterator = type(iter(b'')) bytearray_iterator = type(iter(bytearray())) -#callable_iterator = ??? dict_keyiterator = type(iter({}.keys())) dict_valueiterator = type(iter({}.values())) dict_itemiterator = type(iter({}.items())) @@ -319,7 +318,6 @@ class Iterator(Iterable): Iterator.register(bytes_iterator) Iterator.register(bytearray_iterator) -#Iterator.register(callable_iterator) Iterator.register(dict_keyiterator) Iterator.register(dict_valueiterator) Iterator.register(dict_itemiterator)