| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | # Test iterators. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-21 20:50:25 +03:00
										 |  |  | import sys | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | import unittest | 
					
						
							| 
									
										
										
										
											2021-09-19 15:27:33 +03:00
										 |  |  | from test.support import cpython_only | 
					
						
							| 
									
										
										
										
											2020-06-30 21:46:31 +08:00
										 |  |  | from test.support.os_helper import TESTFN, unlink | 
					
						
							| 
									
										
										
										
											2019-08-04 14:12:48 +03:00
										 |  |  | from test.support import check_free_after_iterating, ALWAYS_EQ, NEVER_EQ | 
					
						
							| 
									
										
										
										
											2012-04-03 10:49:41 +00:00
										 |  |  | import pickle | 
					
						
							|  |  |  | import collections.abc | 
					
						
							| 
									
										
										
										
											2023-02-24 18:02:04 -05:00
										 |  |  | import functools | 
					
						
							|  |  |  | import contextlib | 
					
						
							|  |  |  | import builtins | 
					
						
							| 
									
										
										
										
											2024-06-12 14:18:43 +02:00
										 |  |  | import traceback | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Test result of triple loop (too big to inline) | 
					
						
							|  |  |  | TRIPLETS = [(0, 0, 0), (0, 0, 1), (0, 0, 2), | 
					
						
							|  |  |  |             (0, 1, 0), (0, 1, 1), (0, 1, 2), | 
					
						
							|  |  |  |             (0, 2, 0), (0, 2, 1), (0, 2, 2), | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             (1, 0, 0), (1, 0, 1), (1, 0, 2), | 
					
						
							|  |  |  |             (1, 1, 0), (1, 1, 1), (1, 1, 2), | 
					
						
							|  |  |  |             (1, 2, 0), (1, 2, 1), (1, 2, 2), | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             (2, 0, 0), (2, 0, 1), (2, 0, 2), | 
					
						
							|  |  |  |             (2, 1, 0), (2, 1, 1), (2, 1, 2), | 
					
						
							|  |  |  |             (2, 2, 0), (2, 2, 1), (2, 2, 2)] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Helper classes | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class BasicIterClass: | 
					
						
							|  |  |  |     def __init__(self, n): | 
					
						
							|  |  |  |         self.n = n | 
					
						
							|  |  |  |         self.i = 0 | 
					
						
							| 
									
										
										
										
											2007-04-21 15:47:16 +00:00
										 |  |  |     def __next__(self): | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  |         res = self.i | 
					
						
							|  |  |  |         if res >= self.n: | 
					
						
							|  |  |  |             raise StopIteration | 
					
						
							|  |  |  |         self.i = res + 1 | 
					
						
							|  |  |  |         return res | 
					
						
							| 
									
										
										
										
											2012-04-03 10:49:41 +00:00
										 |  |  |     def __iter__(self): | 
					
						
							|  |  |  |         return self | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class IteratingSequenceClass: | 
					
						
							|  |  |  |     def __init__(self, n): | 
					
						
							|  |  |  |         self.n = n | 
					
						
							|  |  |  |     def __iter__(self): | 
					
						
							|  |  |  |         return BasicIterClass(self.n) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-04 14:12:48 +03:00
										 |  |  | class IteratorProxyClass: | 
					
						
							|  |  |  |     def __init__(self, i): | 
					
						
							|  |  |  |         self.i = i | 
					
						
							|  |  |  |     def __next__(self): | 
					
						
							|  |  |  |         return next(self.i) | 
					
						
							|  |  |  |     def __iter__(self): | 
					
						
							|  |  |  |         return self | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | class SequenceClass: | 
					
						
							|  |  |  |     def __init__(self, n): | 
					
						
							|  |  |  |         self.n = n | 
					
						
							|  |  |  |     def __getitem__(self, i): | 
					
						
							|  |  |  |         if 0 <= i < self.n: | 
					
						
							|  |  |  |             return i | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             raise IndexError | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-04 14:12:48 +03:00
										 |  |  | class SequenceProxyClass: | 
					
						
							|  |  |  |     def __init__(self, s): | 
					
						
							|  |  |  |         self.s = s | 
					
						
							|  |  |  |     def __getitem__(self, i): | 
					
						
							|  |  |  |         return self.s[i] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-21 20:50:25 +03:00
										 |  |  | class UnlimitedSequenceClass: | 
					
						
							|  |  |  |     def __getitem__(self, i): | 
					
						
							|  |  |  |         return i | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-18 09:22:23 -07:00
										 |  |  | class DefaultIterClass: | 
					
						
							|  |  |  |     pass | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class NoIterClass: | 
					
						
							|  |  |  |     def __getitem__(self, i): | 
					
						
							|  |  |  |         return i | 
					
						
							|  |  |  |     __iter__ = None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-22 10:43:35 +03:00
										 |  |  | class BadIterableClass: | 
					
						
							|  |  |  |     def __iter__(self): | 
					
						
							|  |  |  |         raise ZeroDivisionError | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-03 16:50:30 -04:00
										 |  |  | class CallableIterClass: | 
					
						
							|  |  |  |     def __init__(self): | 
					
						
							|  |  |  |         self.i = 0 | 
					
						
							|  |  |  |     def __call__(self): | 
					
						
							|  |  |  |         i = self.i | 
					
						
							|  |  |  |         self.i = i + 1 | 
					
						
							|  |  |  |         if i > 100: | 
					
						
							|  |  |  |             raise IndexError # Emergency stop | 
					
						
							|  |  |  |         return i | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-24 18:02:04 -05:00
										 |  |  | class EmptyIterClass: | 
					
						
							|  |  |  |     def __len__(self): | 
					
						
							|  |  |  |         return 0 | 
					
						
							|  |  |  |     def __getitem__(self, i): | 
					
						
							|  |  |  |         raise StopIteration | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | # Main test suite | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class TestCase(unittest.TestCase): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Helper to check that an iterator returns a given sequence | 
					
						
							| 
									
										
										
										
											2012-04-03 10:49:41 +00:00
										 |  |  |     def check_iterator(self, it, seq, pickle=True): | 
					
						
							|  |  |  |         if pickle: | 
					
						
							|  |  |  |             self.check_pickle(it, seq) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  |         res = [] | 
					
						
							|  |  |  |         while 1: | 
					
						
							|  |  |  |             try: | 
					
						
							| 
									
										
										
										
											2007-04-21 15:47:16 +00:00
										 |  |  |                 val = next(it) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  |             except StopIteration: | 
					
						
							|  |  |  |                 break | 
					
						
							|  |  |  |             res.append(val) | 
					
						
							|  |  |  |         self.assertEqual(res, seq) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Helper to check that a for loop generates a given sequence | 
					
						
							| 
									
										
										
										
											2012-04-03 10:49:41 +00:00
										 |  |  |     def check_for_loop(self, expr, seq, pickle=True): | 
					
						
							|  |  |  |         if pickle: | 
					
						
							|  |  |  |             self.check_pickle(iter(expr), seq) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  |         res = [] | 
					
						
							|  |  |  |         for val in expr: | 
					
						
							|  |  |  |             res.append(val) | 
					
						
							|  |  |  |         self.assertEqual(res, seq) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-03 10:49:41 +00:00
										 |  |  |     # Helper to check picklability | 
					
						
							|  |  |  |     def check_pickle(self, itorg, seq): | 
					
						
							| 
									
										
										
										
											2014-12-15 14:03:42 +02:00
										 |  |  |         for proto in range(pickle.HIGHEST_PROTOCOL + 1): | 
					
						
							|  |  |  |             d = pickle.dumps(itorg, proto) | 
					
						
							|  |  |  |             it = pickle.loads(d) | 
					
						
							|  |  |  |             # Cannot assert type equality because dict iterators unpickle as list | 
					
						
							|  |  |  |             # iterators. | 
					
						
							|  |  |  |             # self.assertEqual(type(itorg), type(it)) | 
					
						
							|  |  |  |             self.assertTrue(isinstance(it, collections.abc.Iterator)) | 
					
						
							|  |  |  |             self.assertEqual(list(it), seq) | 
					
						
							| 
									
										
										
										
											2012-04-03 10:49:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-15 14:03:42 +02:00
										 |  |  |             it = pickle.loads(d) | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 next(it) | 
					
						
							|  |  |  |             except StopIteration: | 
					
						
							|  |  |  |                 continue | 
					
						
							|  |  |  |             d = pickle.dumps(it, proto) | 
					
						
							|  |  |  |             it = pickle.loads(d) | 
					
						
							|  |  |  |             self.assertEqual(list(it), seq[1:]) | 
					
						
							| 
									
										
										
										
											2012-04-03 10:49:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  |     # Test basic use of iter() function | 
					
						
							|  |  |  |     def test_iter_basic(self): | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |         self.check_iterator(iter(range(10)), list(range(10))) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Test that iter(iter(x)) is the same as iter(x) | 
					
						
							|  |  |  |     def test_iter_idempotency(self): | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |         seq = list(range(10)) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  |         it = iter(seq) | 
					
						
							|  |  |  |         it2 = iter(it) | 
					
						
							| 
									
										
										
										
											2009-06-30 23:06:06 +00:00
										 |  |  |         self.assertTrue(it is it2) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Test that for loops over iterators work | 
					
						
							|  |  |  |     def test_iter_for_loop(self): | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |         self.check_for_loop(iter(range(10)), list(range(10))) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Test several independent iterators over the same list | 
					
						
							|  |  |  |     def test_iter_independence(self): | 
					
						
							|  |  |  |         seq = range(3) | 
					
						
							|  |  |  |         res = [] | 
					
						
							|  |  |  |         for i in iter(seq): | 
					
						
							|  |  |  |             for j in iter(seq): | 
					
						
							|  |  |  |                 for k in iter(seq): | 
					
						
							|  |  |  |                     res.append((i, j, k)) | 
					
						
							|  |  |  |         self.assertEqual(res, TRIPLETS) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Test triple list comprehension using iterators | 
					
						
							|  |  |  |     def test_nested_comprehensions_iter(self): | 
					
						
							|  |  |  |         seq = range(3) | 
					
						
							|  |  |  |         res = [(i, j, k) | 
					
						
							|  |  |  |                for i in iter(seq) for j in iter(seq) for k in iter(seq)] | 
					
						
							|  |  |  |         self.assertEqual(res, TRIPLETS) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Test triple list comprehension without iterators | 
					
						
							|  |  |  |     def test_nested_comprehensions_for(self): | 
					
						
							|  |  |  |         seq = range(3) | 
					
						
							|  |  |  |         res = [(i, j, k) for i in seq for j in seq for k in seq] | 
					
						
							|  |  |  |         self.assertEqual(res, TRIPLETS) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Test a class with __iter__ in a for loop | 
					
						
							|  |  |  |     def test_iter_class_for(self): | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |         self.check_for_loop(IteratingSequenceClass(10), list(range(10))) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Test a class with __iter__ with explicit iter() | 
					
						
							|  |  |  |     def test_iter_class_iter(self): | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |         self.check_iterator(iter(IteratingSequenceClass(10)), list(range(10))) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Test for loop on a sequence class without __iter__ | 
					
						
							|  |  |  |     def test_seq_class_for(self): | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |         self.check_for_loop(SequenceClass(10), list(range(10))) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Test iter() on a sequence class without __iter__ | 
					
						
							|  |  |  |     def test_seq_class_iter(self): | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |         self.check_iterator(iter(SequenceClass(10)), list(range(10))) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-06 14:10:24 +02:00
										 |  |  |     def test_mutating_seq_class_iter_pickle(self): | 
					
						
							|  |  |  |         orig = SequenceClass(5) | 
					
						
							|  |  |  |         for proto in range(pickle.HIGHEST_PROTOCOL + 1): | 
					
						
							|  |  |  |             # initial iterator | 
					
						
							|  |  |  |             itorig = iter(orig) | 
					
						
							|  |  |  |             d = pickle.dumps((itorig, orig), proto) | 
					
						
							|  |  |  |             it, seq = pickle.loads(d) | 
					
						
							|  |  |  |             seq.n = 7 | 
					
						
							|  |  |  |             self.assertIs(type(it), type(itorig)) | 
					
						
							|  |  |  |             self.assertEqual(list(it), list(range(7))) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # running iterator | 
					
						
							|  |  |  |             next(itorig) | 
					
						
							|  |  |  |             d = pickle.dumps((itorig, orig), proto) | 
					
						
							|  |  |  |             it, seq = pickle.loads(d) | 
					
						
							|  |  |  |             seq.n = 7 | 
					
						
							|  |  |  |             self.assertIs(type(it), type(itorig)) | 
					
						
							|  |  |  |             self.assertEqual(list(it), list(range(1, 7))) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # empty iterator | 
					
						
							|  |  |  |             for i in range(1, 5): | 
					
						
							|  |  |  |                 next(itorig) | 
					
						
							|  |  |  |             d = pickle.dumps((itorig, orig), proto) | 
					
						
							|  |  |  |             it, seq = pickle.loads(d) | 
					
						
							|  |  |  |             seq.n = 7 | 
					
						
							|  |  |  |             self.assertIs(type(it), type(itorig)) | 
					
						
							|  |  |  |             self.assertEqual(list(it), list(range(5, 7))) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # exhausted iterator | 
					
						
							|  |  |  |             self.assertRaises(StopIteration, next, itorig) | 
					
						
							|  |  |  |             d = pickle.dumps((itorig, orig), proto) | 
					
						
							|  |  |  |             it, seq = pickle.loads(d) | 
					
						
							|  |  |  |             seq.n = 7 | 
					
						
							|  |  |  |             self.assertTrue(isinstance(it, collections.abc.Iterator)) | 
					
						
							|  |  |  |             self.assertEqual(list(it), []) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-30 21:01:26 +03:00
										 |  |  |     def test_mutating_seq_class_exhausted_iter(self): | 
					
						
							|  |  |  |         a = SequenceClass(5) | 
					
						
							|  |  |  |         exhit = iter(a) | 
					
						
							|  |  |  |         empit = iter(a) | 
					
						
							|  |  |  |         for x in exhit:  # exhaust the iterator | 
					
						
							|  |  |  |             next(empit)  # not exhausted | 
					
						
							|  |  |  |         a.n = 7 | 
					
						
							|  |  |  |         self.assertEqual(list(exhit), []) | 
					
						
							|  |  |  |         self.assertEqual(list(empit), [5, 6]) | 
					
						
							|  |  |  |         self.assertEqual(list(a), [0, 1, 2, 3, 4, 5, 6]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-24 18:02:04 -05:00
										 |  |  |     def test_reduce_mutating_builtins_iter(self): | 
					
						
							|  |  |  |         # This is a reproducer of issue #101765 | 
					
						
							|  |  |  |         # where iter `__reduce__` calls could lead to a segfault or SystemError | 
					
						
							|  |  |  |         # depending on the order of C argument evaluation, which is undefined | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Backup builtins | 
					
						
							|  |  |  |         builtins_dict = builtins.__dict__ | 
					
						
							|  |  |  |         orig = {"iter": iter, "reversed": reversed} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         def run(builtin_name, item, sentinel=None): | 
					
						
							|  |  |  |             it = iter(item) if sentinel is None else iter(item, sentinel) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             class CustomStr: | 
					
						
							|  |  |  |                 def __init__(self, name, iterator): | 
					
						
							|  |  |  |                     self.name = name | 
					
						
							|  |  |  |                     self.iterator = iterator | 
					
						
							|  |  |  |                 def __hash__(self): | 
					
						
							|  |  |  |                     return hash(self.name) | 
					
						
							|  |  |  |                 def __eq__(self, other): | 
					
						
							|  |  |  |                     # Here we exhaust our iterator, possibly changing | 
					
						
							|  |  |  |                     # its `it_seq` pointer to NULL | 
					
						
							|  |  |  |                     # The `__reduce__` call should correctly get | 
					
						
							|  |  |  |                     # the pointers after this call | 
					
						
							|  |  |  |                     list(self.iterator) | 
					
						
							|  |  |  |                     return other == self.name | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # del is required here | 
					
						
							|  |  |  |             # to not prematurely call __eq__ from | 
					
						
							|  |  |  |             # the hash collision with the old key | 
					
						
							|  |  |  |             del builtins_dict[builtin_name] | 
					
						
							|  |  |  |             builtins_dict[CustomStr(builtin_name, it)] = orig[builtin_name] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             return it.__reduce__() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         types = [ | 
					
						
							|  |  |  |             (EmptyIterClass(),), | 
					
						
							|  |  |  |             (bytes(8),), | 
					
						
							|  |  |  |             (bytearray(8),), | 
					
						
							|  |  |  |             ((1, 2, 3),), | 
					
						
							|  |  |  |             (lambda: 0, 0), | 
					
						
							|  |  |  |             (tuple[int],)  # GenericAlias | 
					
						
							|  |  |  |         ] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             run_iter = functools.partial(run, "iter") | 
					
						
							|  |  |  |             # The returned value of `__reduce__` should not only be valid | 
					
						
							|  |  |  |             # but also *empty*, as `it` was exhausted during `__eq__` | 
					
						
							|  |  |  |             # i.e "xyz" returns (iter, ("",)) | 
					
						
							|  |  |  |             self.assertEqual(run_iter("xyz"), (orig["iter"], ("",))) | 
					
						
							|  |  |  |             self.assertEqual(run_iter([1, 2, 3]), (orig["iter"], ([],))) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # _PyEval_GetBuiltin is also called for `reversed` in a branch of | 
					
						
							|  |  |  |             # listiter_reduce_general | 
					
						
							|  |  |  |             self.assertEqual( | 
					
						
							|  |  |  |                 run("reversed", orig["reversed"](list(range(8)))), | 
					
						
							| 
									
										
										
										
											2024-02-15 02:00:50 +09:00
										 |  |  |                 (reversed, ([],)) | 
					
						
							| 
									
										
										
										
											2023-02-24 18:02:04 -05:00
										 |  |  |             ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             for case in types: | 
					
						
							|  |  |  |                 self.assertEqual(run_iter(*case), (orig["iter"], ((),))) | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             # Restore original builtins | 
					
						
							|  |  |  |             for key, func in orig.items(): | 
					
						
							|  |  |  |                 # need to suppress KeyErrors in case | 
					
						
							|  |  |  |                 # a failed test deletes the key without setting anything | 
					
						
							|  |  |  |                 with contextlib.suppress(KeyError): | 
					
						
							|  |  |  |                     # del is required here | 
					
						
							|  |  |  |                     # to not invoke our custom __eq__ from | 
					
						
							|  |  |  |                     # the hash collision with the old key | 
					
						
							|  |  |  |                     del builtins_dict[key] | 
					
						
							|  |  |  |                 builtins_dict[key] = func | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-12 23:58:21 +00:00
										 |  |  |     # Test a new_style class with __iter__ but no next() method | 
					
						
							|  |  |  |     def test_new_style_iter_class(self): | 
					
						
							|  |  |  |         class IterClass(object): | 
					
						
							|  |  |  |             def __iter__(self): | 
					
						
							|  |  |  |                 return self | 
					
						
							|  |  |  |         self.assertRaises(TypeError, iter, IterClass()) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  |     # Test two-argument iter() with callable instance | 
					
						
							|  |  |  |     def test_iter_callable(self): | 
					
						
							| 
									
										
										
										
											2022-10-03 16:50:30 -04:00
										 |  |  |         self.check_iterator(iter(CallableIterClass(), 10), list(range(10)), pickle=True) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Test two-argument iter() with function | 
					
						
							|  |  |  |     def test_iter_function(self): | 
					
						
							|  |  |  |         def spam(state=[0]): | 
					
						
							|  |  |  |             i = state[0] | 
					
						
							|  |  |  |             state[0] = i+1 | 
					
						
							|  |  |  |             return i | 
					
						
							| 
									
										
										
										
											2012-04-03 10:49:41 +00:00
										 |  |  |         self.check_iterator(iter(spam, 10), list(range(10)), pickle=False) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Test two-argument iter() with function that raises StopIteration | 
					
						
							|  |  |  |     def test_iter_function_stop(self): | 
					
						
							|  |  |  |         def spam(state=[0]): | 
					
						
							|  |  |  |             i = state[0] | 
					
						
							|  |  |  |             if i == 10: | 
					
						
							|  |  |  |                 raise StopIteration | 
					
						
							|  |  |  |             state[0] = i+1 | 
					
						
							|  |  |  |             return i | 
					
						
							| 
									
										
										
										
											2012-04-03 10:49:41 +00:00
										 |  |  |         self.check_iterator(iter(spam, 20), list(range(10)), pickle=False) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-04 19:51:29 +05:30
										 |  |  |     def test_iter_function_concealing_reentrant_exhaustion(self): | 
					
						
							|  |  |  |         # gh-101892: Test two-argument iter() with a function that | 
					
						
							|  |  |  |         # exhausts its associated iterator but forgets to either return | 
					
						
							|  |  |  |         # a sentinel value or raise StopIteration. | 
					
						
							|  |  |  |         HAS_MORE = 1 | 
					
						
							|  |  |  |         NO_MORE = 2 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         def exhaust(iterator): | 
					
						
							|  |  |  |             """Exhaust an iterator without raising StopIteration.""" | 
					
						
							|  |  |  |             list(iterator) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         def spam(): | 
					
						
							|  |  |  |             # Touching the iterator with exhaust() below will call | 
					
						
							|  |  |  |             # spam() once again so protect against recursion. | 
					
						
							|  |  |  |             if spam.is_recursive_call: | 
					
						
							|  |  |  |                 return NO_MORE | 
					
						
							|  |  |  |             spam.is_recursive_call = True | 
					
						
							|  |  |  |             exhaust(spam.iterator) | 
					
						
							|  |  |  |             return HAS_MORE | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         spam.is_recursive_call = False | 
					
						
							|  |  |  |         spam.iterator = iter(spam, NO_MORE) | 
					
						
							|  |  |  |         with self.assertRaises(StopIteration): | 
					
						
							|  |  |  |             next(spam.iterator) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  |     # Test exception propagation through function iterator | 
					
						
							|  |  |  |     def test_exception_function(self): | 
					
						
							|  |  |  |         def spam(state=[0]): | 
					
						
							|  |  |  |             i = state[0] | 
					
						
							|  |  |  |             state[0] = i+1 | 
					
						
							|  |  |  |             if i == 10: | 
					
						
							|  |  |  |                 raise RuntimeError | 
					
						
							|  |  |  |             return i | 
					
						
							|  |  |  |         res = [] | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             for x in iter(spam, 20): | 
					
						
							|  |  |  |                 res.append(x) | 
					
						
							|  |  |  |         except RuntimeError: | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |             self.assertEqual(res, list(range(10))) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  |         else: | 
					
						
							|  |  |  |             self.fail("should have raised RuntimeError") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Test exception propagation through sequence iterator | 
					
						
							|  |  |  |     def test_exception_sequence(self): | 
					
						
							|  |  |  |         class MySequenceClass(SequenceClass): | 
					
						
							|  |  |  |             def __getitem__(self, i): | 
					
						
							|  |  |  |                 if i == 10: | 
					
						
							|  |  |  |                     raise RuntimeError | 
					
						
							|  |  |  |                 return SequenceClass.__getitem__(self, i) | 
					
						
							|  |  |  |         res = [] | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             for x in MySequenceClass(20): | 
					
						
							|  |  |  |                 res.append(x) | 
					
						
							|  |  |  |         except RuntimeError: | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |             self.assertEqual(res, list(range(10))) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  |         else: | 
					
						
							|  |  |  |             self.fail("should have raised RuntimeError") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Test for StopIteration from __getitem__ | 
					
						
							|  |  |  |     def test_stop_sequence(self): | 
					
						
							|  |  |  |         class MySequenceClass(SequenceClass): | 
					
						
							|  |  |  |             def __getitem__(self, i): | 
					
						
							|  |  |  |                 if i == 10: | 
					
						
							|  |  |  |                     raise StopIteration | 
					
						
							|  |  |  |                 return SequenceClass.__getitem__(self, i) | 
					
						
							| 
									
										
										
										
											2012-04-03 10:49:41 +00:00
										 |  |  |         self.check_for_loop(MySequenceClass(20), list(range(10)), pickle=False) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Test a big range | 
					
						
							|  |  |  |     def test_iter_big_range(self): | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |         self.check_for_loop(iter(range(10000)), list(range(10000))) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Test an empty list | 
					
						
							|  |  |  |     def test_iter_empty(self): | 
					
						
							|  |  |  |         self.check_for_loop(iter([]), []) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Test a tuple | 
					
						
							|  |  |  |     def test_iter_tuple(self): | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |         self.check_for_loop(iter((0,1,2,3,4,5,6,7,8,9)), list(range(10))) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |     # Test a range | 
					
						
							|  |  |  |     def test_iter_range(self): | 
					
						
							|  |  |  |         self.check_for_loop(iter(range(10)), list(range(10))) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Test a string | 
					
						
							|  |  |  |     def test_iter_string(self): | 
					
						
							|  |  |  |         self.check_for_loop(iter("abcde"), ["a", "b", "c", "d", "e"]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Test a directory | 
					
						
							|  |  |  |     def test_iter_dict(self): | 
					
						
							|  |  |  |         dict = {} | 
					
						
							|  |  |  |         for i in range(10): | 
					
						
							|  |  |  |             dict[i] = None | 
					
						
							| 
									
										
										
										
											2007-02-22 04:49:03 +00:00
										 |  |  |         self.check_for_loop(dict, list(dict.keys())) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Test a file | 
					
						
							|  |  |  |     def test_iter_file(self): | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "w", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             for i in range(5): | 
					
						
							|  |  |  |                 f.write("%d\n" % i) | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "r", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  |         try: | 
					
						
							| 
									
										
										
										
											2012-04-03 10:49:41 +00:00
										 |  |  |             self.check_for_loop(f, ["0\n", "1\n", "2\n", "3\n", "4\n"], pickle=False) | 
					
						
							|  |  |  |             self.check_for_loop(f, [], pickle=False) | 
					
						
							| 
									
										
										
										
											2001-04-21 13:33:54 +00:00
										 |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 unlink(TESTFN) | 
					
						
							|  |  |  |             except OSError: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-01 20:45:31 +00:00
										 |  |  |     # Test list()'s use of iterators. | 
					
						
							|  |  |  |     def test_builtin_list(self): | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |         self.assertEqual(list(SequenceClass(5)), list(range(5))) | 
					
						
							| 
									
										
										
										
											2001-05-01 20:45:31 +00:00
										 |  |  |         self.assertEqual(list(SequenceClass(0)), []) | 
					
						
							|  |  |  |         self.assertEqual(list(()), []) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         d = {"one": 1, "two": 2, "three": 3} | 
					
						
							| 
									
										
										
										
											2007-02-22 04:49:03 +00:00
										 |  |  |         self.assertEqual(list(d), list(d.keys())) | 
					
						
							| 
									
										
										
										
											2001-05-01 20:45:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         self.assertRaises(TypeError, list, list) | 
					
						
							|  |  |  |         self.assertRaises(TypeError, list, 42) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "w", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-05-01 20:45:31 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             for i in range(5): | 
					
						
							|  |  |  |                 f.write("%d\n" % i) | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "r", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-05-01 20:45:31 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             self.assertEqual(list(f), ["0\n", "1\n", "2\n", "3\n", "4\n"]) | 
					
						
							|  |  |  |             f.seek(0, 0) | 
					
						
							| 
									
										
										
										
											2002-08-06 17:14:04 +00:00
										 |  |  |             self.assertEqual(list(f), | 
					
						
							| 
									
										
										
										
											2001-05-01 20:45:31 +00:00
										 |  |  |                              ["0\n", "1\n", "2\n", "3\n", "4\n"]) | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 unlink(TESTFN) | 
					
						
							|  |  |  |             except OSError: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-05 03:56:37 +00:00
										 |  |  |     # Test tuples()'s use of iterators. | 
					
						
							|  |  |  |     def test_builtin_tuple(self): | 
					
						
							|  |  |  |         self.assertEqual(tuple(SequenceClass(5)), (0, 1, 2, 3, 4)) | 
					
						
							|  |  |  |         self.assertEqual(tuple(SequenceClass(0)), ()) | 
					
						
							|  |  |  |         self.assertEqual(tuple([]), ()) | 
					
						
							|  |  |  |         self.assertEqual(tuple(()), ()) | 
					
						
							|  |  |  |         self.assertEqual(tuple("abc"), ("a", "b", "c")) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         d = {"one": 1, "two": 2, "three": 3} | 
					
						
							|  |  |  |         self.assertEqual(tuple(d), tuple(d.keys())) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertRaises(TypeError, tuple, list) | 
					
						
							|  |  |  |         self.assertRaises(TypeError, tuple, 42) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "w", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-05-05 03:56:37 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             for i in range(5): | 
					
						
							|  |  |  |                 f.write("%d\n" % i) | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "r", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-05-05 03:56:37 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             self.assertEqual(tuple(f), ("0\n", "1\n", "2\n", "3\n", "4\n")) | 
					
						
							|  |  |  |             f.seek(0, 0) | 
					
						
							| 
									
										
										
										
											2002-08-06 17:14:04 +00:00
										 |  |  |             self.assertEqual(tuple(f), | 
					
						
							| 
									
										
										
										
											2001-05-05 03:56:37 +00:00
										 |  |  |                              ("0\n", "1\n", "2\n", "3\n", "4\n")) | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 unlink(TESTFN) | 
					
						
							|  |  |  |             except OSError: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-02 07:39:38 +00:00
										 |  |  |     # Test filter()'s use of iterators. | 
					
						
							|  |  |  |     def test_builtin_filter(self): | 
					
						
							| 
									
										
											  
											
												Merged revisions 56125-56153 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk
........
  r56127 | georg.brandl | 2007-06-30 09:32:49 +0200 (Sat, 30 Jun 2007) | 2 lines
  Fix a place where floor division would be in order.
........
  r56135 | guido.van.rossum | 2007-07-01 06:13:54 +0200 (Sun, 01 Jul 2007) | 28 lines
  Make map() and filter() identical to itertools.imap() and .ifilter(),
  respectively.
  I fixed two bootstrap issues, due to the dynamic import of itertools:
  1. Starting python requires that map() and filter() are not used until
     site.py has added build/lib.<arch> to sys.path.
  2. Building python requires that setup.py and distutils and everything
     they use is free of map() and filter() calls.
  Beyond this, I only fixed the tests in test_builtin.py.
  Others, please help fixing the remaining tests that are now broken!
  The fixes are usually simple:
  a. map(None, X) -> list(X)
  b. map(F, X) -> list(map(F, X))
  c. map(lambda x: F(x), X) -> [F(x) for x in X]
  d. filter(F, X) -> list(filter(F, X))
  e. filter(lambda x: P(x), X) -> [x for x in X if P(x)]
  Someone, please also contribute a fixer for 2to3 to do this.
  It can leave map()/filter() calls alone that are already
  inside a list() or sorted() call or for-loop.
  Only in rare cases have I seen code that depends on map() of lists
  of different lengths going to the end of the longest, or on filter()
  of a string or tuple returning an object of the same type; these
  will need more thought to fix.
........
  r56136 | guido.van.rossum | 2007-07-01 06:22:01 +0200 (Sun, 01 Jul 2007) | 3 lines
  Make it so that test_decimal fails instead of hangs, to help automated
  test runners.
........
  r56139 | georg.brandl | 2007-07-01 18:20:58 +0200 (Sun, 01 Jul 2007) | 2 lines
  Fix a few test cases after the map->imap change.
........
  r56142 | neal.norwitz | 2007-07-02 06:38:12 +0200 (Mon, 02 Jul 2007) | 1 line
  Get a bunch more tests passing after converting map/filter to return iterators.
........
  r56147 | guido.van.rossum | 2007-07-02 15:32:02 +0200 (Mon, 02 Jul 2007) | 4 lines
  Fix the remaining failing unit tests (at least on OSX).
  Also tweaked urllib2 so it doesn't raise socket.gaierror when
  all network interfaces are turned off.
........
											
										 
											2007-07-03 08:25:58 +00:00
										 |  |  |         self.assertEqual(list(filter(None, SequenceClass(5))), | 
					
						
							|  |  |  |                          list(range(1, 5))) | 
					
						
							|  |  |  |         self.assertEqual(list(filter(None, SequenceClass(0))), []) | 
					
						
							|  |  |  |         self.assertEqual(list(filter(None, ())), []) | 
					
						
							|  |  |  |         self.assertEqual(list(filter(None, "abc")), ["a", "b", "c"]) | 
					
						
							| 
									
										
										
										
											2001-05-02 07:39:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         d = {"one": 1, "two": 2, "three": 3} | 
					
						
							| 
									
										
											  
											
												Merged revisions 56125-56153 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk
........
  r56127 | georg.brandl | 2007-06-30 09:32:49 +0200 (Sat, 30 Jun 2007) | 2 lines
  Fix a place where floor division would be in order.
........
  r56135 | guido.van.rossum | 2007-07-01 06:13:54 +0200 (Sun, 01 Jul 2007) | 28 lines
  Make map() and filter() identical to itertools.imap() and .ifilter(),
  respectively.
  I fixed two bootstrap issues, due to the dynamic import of itertools:
  1. Starting python requires that map() and filter() are not used until
     site.py has added build/lib.<arch> to sys.path.
  2. Building python requires that setup.py and distutils and everything
     they use is free of map() and filter() calls.
  Beyond this, I only fixed the tests in test_builtin.py.
  Others, please help fixing the remaining tests that are now broken!
  The fixes are usually simple:
  a. map(None, X) -> list(X)
  b. map(F, X) -> list(map(F, X))
  c. map(lambda x: F(x), X) -> [F(x) for x in X]
  d. filter(F, X) -> list(filter(F, X))
  e. filter(lambda x: P(x), X) -> [x for x in X if P(x)]
  Someone, please also contribute a fixer for 2to3 to do this.
  It can leave map()/filter() calls alone that are already
  inside a list() or sorted() call or for-loop.
  Only in rare cases have I seen code that depends on map() of lists
  of different lengths going to the end of the longest, or on filter()
  of a string or tuple returning an object of the same type; these
  will need more thought to fix.
........
  r56136 | guido.van.rossum | 2007-07-01 06:22:01 +0200 (Sun, 01 Jul 2007) | 3 lines
  Make it so that test_decimal fails instead of hangs, to help automated
  test runners.
........
  r56139 | georg.brandl | 2007-07-01 18:20:58 +0200 (Sun, 01 Jul 2007) | 2 lines
  Fix a few test cases after the map->imap change.
........
  r56142 | neal.norwitz | 2007-07-02 06:38:12 +0200 (Mon, 02 Jul 2007) | 1 line
  Get a bunch more tests passing after converting map/filter to return iterators.
........
  r56147 | guido.van.rossum | 2007-07-02 15:32:02 +0200 (Mon, 02 Jul 2007) | 4 lines
  Fix the remaining failing unit tests (at least on OSX).
  Also tweaked urllib2 so it doesn't raise socket.gaierror when
  all network interfaces are turned off.
........
											
										 
											2007-07-03 08:25:58 +00:00
										 |  |  |         self.assertEqual(list(filter(None, d)), list(d.keys())) | 
					
						
							| 
									
										
										
										
											2001-05-02 07:39:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         self.assertRaises(TypeError, filter, None, list) | 
					
						
							|  |  |  |         self.assertRaises(TypeError, filter, None, 42) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         class Boolean: | 
					
						
							|  |  |  |             def __init__(self, truth): | 
					
						
							|  |  |  |                 self.truth = truth | 
					
						
							| 
									
										
										
										
											2006-11-28 19:15:13 +00:00
										 |  |  |             def __bool__(self): | 
					
						
							| 
									
										
										
										
											2001-05-02 07:39:38 +00:00
										 |  |  |                 return self.truth | 
					
						
							| 
									
										
										
										
											2006-11-28 19:15:13 +00:00
										 |  |  |         bTrue = Boolean(True) | 
					
						
							|  |  |  |         bFalse = Boolean(False) | 
					
						
							| 
									
										
										
										
											2001-05-02 07:39:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         class Seq: | 
					
						
							|  |  |  |             def __init__(self, *args): | 
					
						
							|  |  |  |                 self.vals = args | 
					
						
							|  |  |  |             def __iter__(self): | 
					
						
							|  |  |  |                 class SeqIter: | 
					
						
							|  |  |  |                     def __init__(self, vals): | 
					
						
							|  |  |  |                         self.vals = vals | 
					
						
							|  |  |  |                         self.i = 0 | 
					
						
							|  |  |  |                     def __iter__(self): | 
					
						
							|  |  |  |                         return self | 
					
						
							| 
									
										
										
										
											2007-04-21 15:47:16 +00:00
										 |  |  |                     def __next__(self): | 
					
						
							| 
									
										
										
										
											2001-05-02 07:39:38 +00:00
										 |  |  |                         i = self.i | 
					
						
							|  |  |  |                         self.i = i + 1 | 
					
						
							|  |  |  |                         if i < len(self.vals): | 
					
						
							|  |  |  |                             return self.vals[i] | 
					
						
							|  |  |  |                         else: | 
					
						
							|  |  |  |                             raise StopIteration | 
					
						
							|  |  |  |                 return SeqIter(self.vals) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 16:50:58 +00:00
										 |  |  |         seq = Seq(*([bTrue, bFalse] * 25)) | 
					
						
							| 
									
										
											  
											
												Merged revisions 56125-56153 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk
........
  r56127 | georg.brandl | 2007-06-30 09:32:49 +0200 (Sat, 30 Jun 2007) | 2 lines
  Fix a place where floor division would be in order.
........
  r56135 | guido.van.rossum | 2007-07-01 06:13:54 +0200 (Sun, 01 Jul 2007) | 28 lines
  Make map() and filter() identical to itertools.imap() and .ifilter(),
  respectively.
  I fixed two bootstrap issues, due to the dynamic import of itertools:
  1. Starting python requires that map() and filter() are not used until
     site.py has added build/lib.<arch> to sys.path.
  2. Building python requires that setup.py and distutils and everything
     they use is free of map() and filter() calls.
  Beyond this, I only fixed the tests in test_builtin.py.
  Others, please help fixing the remaining tests that are now broken!
  The fixes are usually simple:
  a. map(None, X) -> list(X)
  b. map(F, X) -> list(map(F, X))
  c. map(lambda x: F(x), X) -> [F(x) for x in X]
  d. filter(F, X) -> list(filter(F, X))
  e. filter(lambda x: P(x), X) -> [x for x in X if P(x)]
  Someone, please also contribute a fixer for 2to3 to do this.
  It can leave map()/filter() calls alone that are already
  inside a list() or sorted() call or for-loop.
  Only in rare cases have I seen code that depends on map() of lists
  of different lengths going to the end of the longest, or on filter()
  of a string or tuple returning an object of the same type; these
  will need more thought to fix.
........
  r56136 | guido.van.rossum | 2007-07-01 06:22:01 +0200 (Sun, 01 Jul 2007) | 3 lines
  Make it so that test_decimal fails instead of hangs, to help automated
  test runners.
........
  r56139 | georg.brandl | 2007-07-01 18:20:58 +0200 (Sun, 01 Jul 2007) | 2 lines
  Fix a few test cases after the map->imap change.
........
  r56142 | neal.norwitz | 2007-07-02 06:38:12 +0200 (Mon, 02 Jul 2007) | 1 line
  Get a bunch more tests passing after converting map/filter to return iterators.
........
  r56147 | guido.van.rossum | 2007-07-02 15:32:02 +0200 (Mon, 02 Jul 2007) | 4 lines
  Fix the remaining failing unit tests (at least on OSX).
  Also tweaked urllib2 so it doesn't raise socket.gaierror when
  all network interfaces are turned off.
........
											
										 
											2007-07-03 08:25:58 +00:00
										 |  |  |         self.assertEqual(list(filter(lambda x: not x, seq)), [bFalse]*25) | 
					
						
							|  |  |  |         self.assertEqual(list(filter(lambda x: not x, iter(seq))), [bFalse]*25) | 
					
						
							| 
									
										
										
										
											2001-05-02 07:39:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-03 07:00:32 +00:00
										 |  |  |     # Test max() and min()'s use of iterators. | 
					
						
							|  |  |  |     def test_builtin_max_min(self): | 
					
						
							|  |  |  |         self.assertEqual(max(SequenceClass(5)), 4) | 
					
						
							|  |  |  |         self.assertEqual(min(SequenceClass(5)), 0) | 
					
						
							|  |  |  |         self.assertEqual(max(8, -1), 8) | 
					
						
							|  |  |  |         self.assertEqual(min(8, -1), -1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         d = {"one": 1, "two": 2, "three": 3} | 
					
						
							|  |  |  |         self.assertEqual(max(d), "two") | 
					
						
							|  |  |  |         self.assertEqual(min(d), "one") | 
					
						
							| 
									
										
										
										
											2007-02-11 06:12:03 +00:00
										 |  |  |         self.assertEqual(max(d.values()), 3) | 
					
						
							|  |  |  |         self.assertEqual(min(iter(d.values())), 1) | 
					
						
							| 
									
										
										
										
											2001-05-03 07:00:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "w", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-05-03 07:00:32 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             f.write("medium line\n") | 
					
						
							|  |  |  |             f.write("xtra large line\n") | 
					
						
							|  |  |  |             f.write("itty-bitty line\n") | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "r", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-05-03 07:00:32 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             self.assertEqual(min(f), "itty-bitty line\n") | 
					
						
							|  |  |  |             f.seek(0, 0) | 
					
						
							|  |  |  |             self.assertEqual(max(f), "xtra large line\n") | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 unlink(TESTFN) | 
					
						
							|  |  |  |             except OSError: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-03 23:54:49 +00:00
										 |  |  |     # Test map()'s use of iterators. | 
					
						
							|  |  |  |     def test_builtin_map(self): | 
					
						
							| 
									
										
											  
											
												Merged revisions 56125-56153 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk
........
  r56127 | georg.brandl | 2007-06-30 09:32:49 +0200 (Sat, 30 Jun 2007) | 2 lines
  Fix a place where floor division would be in order.
........
  r56135 | guido.van.rossum | 2007-07-01 06:13:54 +0200 (Sun, 01 Jul 2007) | 28 lines
  Make map() and filter() identical to itertools.imap() and .ifilter(),
  respectively.
  I fixed two bootstrap issues, due to the dynamic import of itertools:
  1. Starting python requires that map() and filter() are not used until
     site.py has added build/lib.<arch> to sys.path.
  2. Building python requires that setup.py and distutils and everything
     they use is free of map() and filter() calls.
  Beyond this, I only fixed the tests in test_builtin.py.
  Others, please help fixing the remaining tests that are now broken!
  The fixes are usually simple:
  a. map(None, X) -> list(X)
  b. map(F, X) -> list(map(F, X))
  c. map(lambda x: F(x), X) -> [F(x) for x in X]
  d. filter(F, X) -> list(filter(F, X))
  e. filter(lambda x: P(x), X) -> [x for x in X if P(x)]
  Someone, please also contribute a fixer for 2to3 to do this.
  It can leave map()/filter() calls alone that are already
  inside a list() or sorted() call or for-loop.
  Only in rare cases have I seen code that depends on map() of lists
  of different lengths going to the end of the longest, or on filter()
  of a string or tuple returning an object of the same type; these
  will need more thought to fix.
........
  r56136 | guido.van.rossum | 2007-07-01 06:22:01 +0200 (Sun, 01 Jul 2007) | 3 lines
  Make it so that test_decimal fails instead of hangs, to help automated
  test runners.
........
  r56139 | georg.brandl | 2007-07-01 18:20:58 +0200 (Sun, 01 Jul 2007) | 2 lines
  Fix a few test cases after the map->imap change.
........
  r56142 | neal.norwitz | 2007-07-02 06:38:12 +0200 (Mon, 02 Jul 2007) | 1 line
  Get a bunch more tests passing after converting map/filter to return iterators.
........
  r56147 | guido.van.rossum | 2007-07-02 15:32:02 +0200 (Mon, 02 Jul 2007) | 4 lines
  Fix the remaining failing unit tests (at least on OSX).
  Also tweaked urllib2 so it doesn't raise socket.gaierror when
  all network interfaces are turned off.
........
											
										 
											2007-07-03 08:25:58 +00:00
										 |  |  |         self.assertEqual(list(map(lambda x: x+1, SequenceClass(5))), | 
					
						
							|  |  |  |                          list(range(1, 6))) | 
					
						
							| 
									
										
										
										
											2001-05-03 23:54:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         d = {"one": 1, "two": 2, "three": 3} | 
					
						
							| 
									
										
											  
											
												Merged revisions 56125-56153 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk
........
  r56127 | georg.brandl | 2007-06-30 09:32:49 +0200 (Sat, 30 Jun 2007) | 2 lines
  Fix a place where floor division would be in order.
........
  r56135 | guido.van.rossum | 2007-07-01 06:13:54 +0200 (Sun, 01 Jul 2007) | 28 lines
  Make map() and filter() identical to itertools.imap() and .ifilter(),
  respectively.
  I fixed two bootstrap issues, due to the dynamic import of itertools:
  1. Starting python requires that map() and filter() are not used until
     site.py has added build/lib.<arch> to sys.path.
  2. Building python requires that setup.py and distutils and everything
     they use is free of map() and filter() calls.
  Beyond this, I only fixed the tests in test_builtin.py.
  Others, please help fixing the remaining tests that are now broken!
  The fixes are usually simple:
  a. map(None, X) -> list(X)
  b. map(F, X) -> list(map(F, X))
  c. map(lambda x: F(x), X) -> [F(x) for x in X]
  d. filter(F, X) -> list(filter(F, X))
  e. filter(lambda x: P(x), X) -> [x for x in X if P(x)]
  Someone, please also contribute a fixer for 2to3 to do this.
  It can leave map()/filter() calls alone that are already
  inside a list() or sorted() call or for-loop.
  Only in rare cases have I seen code that depends on map() of lists
  of different lengths going to the end of the longest, or on filter()
  of a string or tuple returning an object of the same type; these
  will need more thought to fix.
........
  r56136 | guido.van.rossum | 2007-07-01 06:22:01 +0200 (Sun, 01 Jul 2007) | 3 lines
  Make it so that test_decimal fails instead of hangs, to help automated
  test runners.
........
  r56139 | georg.brandl | 2007-07-01 18:20:58 +0200 (Sun, 01 Jul 2007) | 2 lines
  Fix a few test cases after the map->imap change.
........
  r56142 | neal.norwitz | 2007-07-02 06:38:12 +0200 (Mon, 02 Jul 2007) | 1 line
  Get a bunch more tests passing after converting map/filter to return iterators.
........
  r56147 | guido.van.rossum | 2007-07-02 15:32:02 +0200 (Mon, 02 Jul 2007) | 4 lines
  Fix the remaining failing unit tests (at least on OSX).
  Also tweaked urllib2 so it doesn't raise socket.gaierror when
  all network interfaces are turned off.
........
											
										 
											2007-07-03 08:25:58 +00:00
										 |  |  |         self.assertEqual(list(map(lambda k, d=d: (k, d[k]), d)), | 
					
						
							|  |  |  |                          list(d.items())) | 
					
						
							| 
									
										
										
										
											2007-02-22 04:49:03 +00:00
										 |  |  |         dkeys = list(d.keys()) | 
					
						
							| 
									
										
										
										
											2001-05-03 23:54:49 +00:00
										 |  |  |         expected = [(i < len(d) and dkeys[i] or None, | 
					
						
							|  |  |  |                      i, | 
					
						
							|  |  |  |                      i < len(d) and dkeys[i] or None) | 
					
						
							| 
									
										
											  
											
												Merged revisions 56125-56153 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk
........
  r56127 | georg.brandl | 2007-06-30 09:32:49 +0200 (Sat, 30 Jun 2007) | 2 lines
  Fix a place where floor division would be in order.
........
  r56135 | guido.van.rossum | 2007-07-01 06:13:54 +0200 (Sun, 01 Jul 2007) | 28 lines
  Make map() and filter() identical to itertools.imap() and .ifilter(),
  respectively.
  I fixed two bootstrap issues, due to the dynamic import of itertools:
  1. Starting python requires that map() and filter() are not used until
     site.py has added build/lib.<arch> to sys.path.
  2. Building python requires that setup.py and distutils and everything
     they use is free of map() and filter() calls.
  Beyond this, I only fixed the tests in test_builtin.py.
  Others, please help fixing the remaining tests that are now broken!
  The fixes are usually simple:
  a. map(None, X) -> list(X)
  b. map(F, X) -> list(map(F, X))
  c. map(lambda x: F(x), X) -> [F(x) for x in X]
  d. filter(F, X) -> list(filter(F, X))
  e. filter(lambda x: P(x), X) -> [x for x in X if P(x)]
  Someone, please also contribute a fixer for 2to3 to do this.
  It can leave map()/filter() calls alone that are already
  inside a list() or sorted() call or for-loop.
  Only in rare cases have I seen code that depends on map() of lists
  of different lengths going to the end of the longest, or on filter()
  of a string or tuple returning an object of the same type; these
  will need more thought to fix.
........
  r56136 | guido.van.rossum | 2007-07-01 06:22:01 +0200 (Sun, 01 Jul 2007) | 3 lines
  Make it so that test_decimal fails instead of hangs, to help automated
  test runners.
........
  r56139 | georg.brandl | 2007-07-01 18:20:58 +0200 (Sun, 01 Jul 2007) | 2 lines
  Fix a few test cases after the map->imap change.
........
  r56142 | neal.norwitz | 2007-07-02 06:38:12 +0200 (Mon, 02 Jul 2007) | 1 line
  Get a bunch more tests passing after converting map/filter to return iterators.
........
  r56147 | guido.van.rossum | 2007-07-02 15:32:02 +0200 (Mon, 02 Jul 2007) | 4 lines
  Fix the remaining failing unit tests (at least on OSX).
  Also tweaked urllib2 so it doesn't raise socket.gaierror when
  all network interfaces are turned off.
........
											
										 
											2007-07-03 08:25:58 +00:00
										 |  |  |                     for i in range(3)] | 
					
						
							| 
									
										
										
										
											2001-05-03 23:54:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "w", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-05-03 23:54:49 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             for i in range(10): | 
					
						
							|  |  |  |                 f.write("xy" * i + "\n") # line i has len 2*i+1 | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "r", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-05-03 23:54:49 +00:00
										 |  |  |         try: | 
					
						
							| 
									
										
											  
											
												Merged revisions 56125-56153 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk
........
  r56127 | georg.brandl | 2007-06-30 09:32:49 +0200 (Sat, 30 Jun 2007) | 2 lines
  Fix a place where floor division would be in order.
........
  r56135 | guido.van.rossum | 2007-07-01 06:13:54 +0200 (Sun, 01 Jul 2007) | 28 lines
  Make map() and filter() identical to itertools.imap() and .ifilter(),
  respectively.
  I fixed two bootstrap issues, due to the dynamic import of itertools:
  1. Starting python requires that map() and filter() are not used until
     site.py has added build/lib.<arch> to sys.path.
  2. Building python requires that setup.py and distutils and everything
     they use is free of map() and filter() calls.
  Beyond this, I only fixed the tests in test_builtin.py.
  Others, please help fixing the remaining tests that are now broken!
  The fixes are usually simple:
  a. map(None, X) -> list(X)
  b. map(F, X) -> list(map(F, X))
  c. map(lambda x: F(x), X) -> [F(x) for x in X]
  d. filter(F, X) -> list(filter(F, X))
  e. filter(lambda x: P(x), X) -> [x for x in X if P(x)]
  Someone, please also contribute a fixer for 2to3 to do this.
  It can leave map()/filter() calls alone that are already
  inside a list() or sorted() call or for-loop.
  Only in rare cases have I seen code that depends on map() of lists
  of different lengths going to the end of the longest, or on filter()
  of a string or tuple returning an object of the same type; these
  will need more thought to fix.
........
  r56136 | guido.van.rossum | 2007-07-01 06:22:01 +0200 (Sun, 01 Jul 2007) | 3 lines
  Make it so that test_decimal fails instead of hangs, to help automated
  test runners.
........
  r56139 | georg.brandl | 2007-07-01 18:20:58 +0200 (Sun, 01 Jul 2007) | 2 lines
  Fix a few test cases after the map->imap change.
........
  r56142 | neal.norwitz | 2007-07-02 06:38:12 +0200 (Mon, 02 Jul 2007) | 1 line
  Get a bunch more tests passing after converting map/filter to return iterators.
........
  r56147 | guido.van.rossum | 2007-07-02 15:32:02 +0200 (Mon, 02 Jul 2007) | 4 lines
  Fix the remaining failing unit tests (at least on OSX).
  Also tweaked urllib2 so it doesn't raise socket.gaierror when
  all network interfaces are turned off.
........
											
										 
											2007-07-03 08:25:58 +00:00
										 |  |  |             self.assertEqual(list(map(len, f)), list(range(1, 21, 2))) | 
					
						
							| 
									
										
										
										
											2001-05-03 23:54:49 +00:00
										 |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 unlink(TESTFN) | 
					
						
							|  |  |  |             except OSError: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-06 01:05:02 +00:00
										 |  |  |     # Test zip()'s use of iterators. | 
					
						
							|  |  |  |     def test_builtin_zip(self): | 
					
						
							| 
									
										
										
										
											2006-08-24 19:48:10 +00:00
										 |  |  |         self.assertEqual(list(zip()), []) | 
					
						
							|  |  |  |         self.assertEqual(list(zip(*[])), []) | 
					
						
							|  |  |  |         self.assertEqual(list(zip(*[(1, 2), 'ab'])), [(1, 'a'), (2, 'b')]) | 
					
						
							| 
									
										
										
										
											2003-08-02 07:42:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-06 01:05:02 +00:00
										 |  |  |         self.assertRaises(TypeError, zip, None) | 
					
						
							|  |  |  |         self.assertRaises(TypeError, zip, range(10), 42) | 
					
						
							|  |  |  |         self.assertRaises(TypeError, zip, range(10), zip) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-24 19:48:10 +00:00
										 |  |  |         self.assertEqual(list(zip(IteratingSequenceClass(3))), | 
					
						
							| 
									
										
										
										
											2001-05-06 01:05:02 +00:00
										 |  |  |                          [(0,), (1,), (2,)]) | 
					
						
							| 
									
										
										
										
											2006-08-24 19:48:10 +00:00
										 |  |  |         self.assertEqual(list(zip(SequenceClass(3))), | 
					
						
							| 
									
										
										
										
											2001-05-06 01:05:02 +00:00
										 |  |  |                          [(0,), (1,), (2,)]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         d = {"one": 1, "two": 2, "three": 3} | 
					
						
							| 
									
										
										
										
											2007-02-22 04:49:03 +00:00
										 |  |  |         self.assertEqual(list(d.items()), list(zip(d, d.values()))) | 
					
						
							| 
									
										
										
										
											2001-05-06 01:05:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Generate all ints starting at constructor arg. | 
					
						
							|  |  |  |         class IntsFrom: | 
					
						
							|  |  |  |             def __init__(self, start): | 
					
						
							|  |  |  |                 self.i = start | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             def __iter__(self): | 
					
						
							|  |  |  |                 return self | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-21 15:47:16 +00:00
										 |  |  |             def __next__(self): | 
					
						
							| 
									
										
										
										
											2001-05-06 01:05:02 +00:00
										 |  |  |                 i = self.i | 
					
						
							|  |  |  |                 self.i = i+1 | 
					
						
							|  |  |  |                 return i | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "w", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-05-06 01:05:02 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             f.write("a\n" "bbb\n" "cc\n") | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "r", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-05-06 01:05:02 +00:00
										 |  |  |         try: | 
					
						
							| 
									
										
										
										
											2006-08-24 19:48:10 +00:00
										 |  |  |             self.assertEqual(list(zip(IntsFrom(0), f, IntsFrom(-100))), | 
					
						
							| 
									
										
										
										
											2001-05-06 01:05:02 +00:00
										 |  |  |                              [(0, "a\n", -100), | 
					
						
							|  |  |  |                               (1, "bbb\n", -99), | 
					
						
							|  |  |  |                               (2, "cc\n", -98)]) | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 unlink(TESTFN) | 
					
						
							|  |  |  |             except OSError: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |         self.assertEqual(list(zip(range(5))), [(i,) for i in range(5)]) | 
					
						
							| 
									
										
										
										
											2002-04-29 21:27:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Classes that lie about their lengths. | 
					
						
							|  |  |  |         class NoGuessLen5: | 
					
						
							|  |  |  |             def __getitem__(self, i): | 
					
						
							|  |  |  |                 if i >= 5: | 
					
						
							|  |  |  |                     raise IndexError | 
					
						
							|  |  |  |                 return i | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         class Guess3Len5(NoGuessLen5): | 
					
						
							|  |  |  |             def __len__(self): | 
					
						
							|  |  |  |                 return 3 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         class Guess30Len5(NoGuessLen5): | 
					
						
							|  |  |  |             def __len__(self): | 
					
						
							|  |  |  |                 return 30 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-24 19:48:10 +00:00
										 |  |  |         def lzip(*args): | 
					
						
							|  |  |  |             return list(zip(*args)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-29 21:27:32 +00:00
										 |  |  |         self.assertEqual(len(Guess3Len5()), 3) | 
					
						
							|  |  |  |         self.assertEqual(len(Guess30Len5()), 30) | 
					
						
							| 
									
										
										
										
											2006-08-24 19:48:10 +00:00
										 |  |  |         self.assertEqual(lzip(NoGuessLen5()), lzip(range(5))) | 
					
						
							|  |  |  |         self.assertEqual(lzip(Guess3Len5()), lzip(range(5))) | 
					
						
							|  |  |  |         self.assertEqual(lzip(Guess30Len5()), lzip(range(5))) | 
					
						
							| 
									
										
										
										
											2002-04-29 21:27:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         expected = [(i, i) for i in range(5)] | 
					
						
							|  |  |  |         for x in NoGuessLen5(), Guess3Len5(), Guess30Len5(): | 
					
						
							|  |  |  |             for y in NoGuessLen5(), Guess3Len5(), Guess30Len5(): | 
					
						
							| 
									
										
										
										
											2006-08-24 19:48:10 +00:00
										 |  |  |                 self.assertEqual(lzip(x, y), expected) | 
					
						
							| 
									
										
										
										
											2002-04-29 21:27:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-05 05:36:48 +00:00
										 |  |  |     def test_unicode_join_endcase(self): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # This class inserts a Unicode object into its argument's natural | 
					
						
							|  |  |  |         # iteration, in the 3rd position. | 
					
						
							|  |  |  |         class OhPhooey: | 
					
						
							|  |  |  |             def __init__(self, seq): | 
					
						
							|  |  |  |                 self.it = iter(seq) | 
					
						
							|  |  |  |                 self.i = 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             def __iter__(self): | 
					
						
							|  |  |  |                 return self | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-21 15:47:16 +00:00
										 |  |  |             def __next__(self): | 
					
						
							| 
									
										
										
										
											2001-05-05 05:36:48 +00:00
										 |  |  |                 i = self.i | 
					
						
							|  |  |  |                 self.i = i+1 | 
					
						
							|  |  |  |                 if i == 2: | 
					
						
							| 
									
										
										
										
											2007-05-22 16:52:54 +00:00
										 |  |  |                     return "fooled you!" | 
					
						
							| 
									
										
										
										
											2007-04-21 15:47:16 +00:00
										 |  |  |                 return next(self.it) | 
					
						
							| 
									
										
										
										
											2001-05-05 05:36:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "w", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-05-05 05:36:48 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             f.write("a\n" + "b\n" + "c\n") | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "r", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-05-05 05:36:48 +00:00
										 |  |  |         # Nasty:  string.join(s) can't know whether unicode.join() is needed | 
					
						
							|  |  |  |         # until it's seen all of s's elements.  But in this case, f's | 
					
						
							|  |  |  |         # iterator cannot be restarted.  So what we're testing here is | 
					
						
							|  |  |  |         # whether string.join() can manage to remember everything it's seen | 
					
						
							|  |  |  |         # and pass that on to unicode.join(). | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             got = " - ".join(OhPhooey(f)) | 
					
						
							| 
									
										
										
										
											2007-06-11 21:38:39 +00:00
										 |  |  |             self.assertEqual(got, "a\n - b\n - fooled you! - c\n") | 
					
						
							| 
									
										
										
										
											2001-05-05 05:36:48 +00:00
										 |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 unlink(TESTFN) | 
					
						
							|  |  |  |             except OSError: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-05 10:06:17 +00:00
										 |  |  |     # Test iterators with 'x in y' and 'x not in y'. | 
					
						
							|  |  |  |     def test_in_and_not_in(self): | 
					
						
							| 
									
										
										
										
											2001-05-05 21:05:01 +00:00
										 |  |  |         for sc5 in IteratingSequenceClass(5), SequenceClass(5): | 
					
						
							|  |  |  |             for i in range(5): | 
					
						
							| 
									
										
										
										
											2010-01-19 00:09:57 +00:00
										 |  |  |                 self.assertIn(i, sc5) | 
					
						
							| 
									
										
										
										
											2001-05-05 21:05:01 +00:00
										 |  |  |             for i in "abc", -1, 5, 42.42, (3, 4), [], {1: 1}, 3-12j, sc5: | 
					
						
							| 
									
										
										
										
											2010-01-19 00:09:57 +00:00
										 |  |  |                 self.assertNotIn(i, sc5) | 
					
						
							| 
									
										
										
										
											2001-05-05 10:06:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-04 14:12:48 +03:00
										 |  |  |         self.assertIn(ALWAYS_EQ, IteratorProxyClass(iter([1]))) | 
					
						
							|  |  |  |         self.assertIn(ALWAYS_EQ, SequenceProxyClass([1])) | 
					
						
							|  |  |  |         self.assertNotIn(ALWAYS_EQ, IteratorProxyClass(iter([NEVER_EQ]))) | 
					
						
							|  |  |  |         self.assertNotIn(ALWAYS_EQ, SequenceProxyClass([NEVER_EQ])) | 
					
						
							|  |  |  |         self.assertIn(NEVER_EQ, IteratorProxyClass(iter([ALWAYS_EQ]))) | 
					
						
							|  |  |  |         self.assertIn(NEVER_EQ, SequenceProxyClass([ALWAYS_EQ])) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-05 10:06:17 +00:00
										 |  |  |         self.assertRaises(TypeError, lambda: 3 in 12) | 
					
						
							|  |  |  |         self.assertRaises(TypeError, lambda: 3 not in map) | 
					
						
							| 
									
										
										
										
											2020-06-22 10:43:35 +03:00
										 |  |  |         self.assertRaises(ZeroDivisionError, lambda: 3 in BadIterableClass()) | 
					
						
							| 
									
										
										
										
											2001-05-05 10:06:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         d = {"one": 1, "two": 2, "three": 3, 1j: 2j} | 
					
						
							|  |  |  |         for k in d: | 
					
						
							| 
									
										
										
										
											2010-01-19 00:09:57 +00:00
										 |  |  |             self.assertIn(k, d) | 
					
						
							|  |  |  |             self.assertNotIn(k, d.values()) | 
					
						
							| 
									
										
										
										
											2001-05-05 10:06:17 +00:00
										 |  |  |         for v in d.values(): | 
					
						
							| 
									
										
										
										
											2010-01-19 00:09:57 +00:00
										 |  |  |             self.assertIn(v, d.values()) | 
					
						
							|  |  |  |             self.assertNotIn(v, d) | 
					
						
							| 
									
										
										
										
											2007-02-11 06:12:03 +00:00
										 |  |  |         for k, v in d.items(): | 
					
						
							| 
									
										
										
										
											2010-01-19 00:09:57 +00:00
										 |  |  |             self.assertIn((k, v), d.items()) | 
					
						
							|  |  |  |             self.assertNotIn((v, k), d.items()) | 
					
						
							| 
									
										
										
										
											2001-05-05 10:06:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "w", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-05-05 10:06:17 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             f.write("a\n" "b\n" "c\n") | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "r", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-05-05 10:06:17 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             for chunk in "abc": | 
					
						
							|  |  |  |                 f.seek(0, 0) | 
					
						
							| 
									
										
										
										
											2010-01-19 00:09:57 +00:00
										 |  |  |                 self.assertNotIn(chunk, f) | 
					
						
							| 
									
										
										
										
											2001-05-05 10:06:17 +00:00
										 |  |  |                 f.seek(0, 0) | 
					
						
							| 
									
										
										
										
											2010-01-19 00:09:57 +00:00
										 |  |  |                 self.assertIn((chunk + "\n"), f) | 
					
						
							| 
									
										
										
										
											2001-05-05 10:06:17 +00:00
										 |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 unlink(TESTFN) | 
					
						
							|  |  |  |             except OSError: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-05 11:33:43 +00:00
										 |  |  |     # Test iterators with operator.countOf (PySequence_Count). | 
					
						
							|  |  |  |     def test_countOf(self): | 
					
						
							|  |  |  |         from operator import countOf | 
					
						
							|  |  |  |         self.assertEqual(countOf([1,2,2,3,2,5], 2), 3) | 
					
						
							|  |  |  |         self.assertEqual(countOf((1,2,2,3,2,5), 2), 3) | 
					
						
							|  |  |  |         self.assertEqual(countOf("122325", "2"), 3) | 
					
						
							|  |  |  |         self.assertEqual(countOf("122325", "6"), 0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertRaises(TypeError, countOf, 42, 1) | 
					
						
							|  |  |  |         self.assertRaises(TypeError, countOf, countOf, countOf) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         d = {"one": 3, "two": 3, "three": 3, 1j: 2j} | 
					
						
							|  |  |  |         for k in d: | 
					
						
							|  |  |  |             self.assertEqual(countOf(d, k), 1) | 
					
						
							| 
									
										
										
										
											2007-02-11 06:12:03 +00:00
										 |  |  |         self.assertEqual(countOf(d.values(), 3), 3) | 
					
						
							|  |  |  |         self.assertEqual(countOf(d.values(), 2j), 1) | 
					
						
							|  |  |  |         self.assertEqual(countOf(d.values(), 1j), 0) | 
					
						
							| 
									
										
										
										
											2001-05-05 11:33:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "w", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-05-05 11:33:43 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             f.write("a\n" "b\n" "c\n" "b\n") | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "r", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-05-05 11:33:43 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             for letter, count in ("a", 1), ("b", 2), ("c", 1), ("d", 0): | 
					
						
							|  |  |  |                 f.seek(0, 0) | 
					
						
							|  |  |  |                 self.assertEqual(countOf(f, letter + "\n"), count) | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 unlink(TESTFN) | 
					
						
							|  |  |  |             except OSError: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-08 04:00:12 +00:00
										 |  |  |     # Test iterators with operator.indexOf (PySequence_Index). | 
					
						
							|  |  |  |     def test_indexOf(self): | 
					
						
							|  |  |  |         from operator import indexOf | 
					
						
							|  |  |  |         self.assertEqual(indexOf([1,2,2,3,2,5], 1), 0) | 
					
						
							|  |  |  |         self.assertEqual(indexOf((1,2,2,3,2,5), 2), 1) | 
					
						
							|  |  |  |         self.assertEqual(indexOf((1,2,2,3,2,5), 3), 3) | 
					
						
							|  |  |  |         self.assertEqual(indexOf((1,2,2,3,2,5), 5), 5) | 
					
						
							|  |  |  |         self.assertRaises(ValueError, indexOf, (1,2,2,3,2,5), 0) | 
					
						
							|  |  |  |         self.assertRaises(ValueError, indexOf, (1,2,2,3,2,5), 6) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertEqual(indexOf("122325", "2"), 1) | 
					
						
							|  |  |  |         self.assertEqual(indexOf("122325", "5"), 5) | 
					
						
							|  |  |  |         self.assertRaises(ValueError, indexOf, "122325", "6") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assertRaises(TypeError, indexOf, 42, 1) | 
					
						
							|  |  |  |         self.assertRaises(TypeError, indexOf, indexOf, indexOf) | 
					
						
							| 
									
										
										
										
											2020-06-22 10:43:35 +03:00
										 |  |  |         self.assertRaises(ZeroDivisionError, indexOf, BadIterableClass(), 1) | 
					
						
							| 
									
										
										
										
											2001-09-08 04:00:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "w", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-09-08 04:00:12 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             f.write("a\n" "b\n" "c\n" "d\n" "e\n") | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "r", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-09-08 04:00:12 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             fiter = iter(f) | 
					
						
							|  |  |  |             self.assertEqual(indexOf(fiter, "b\n"), 1) | 
					
						
							|  |  |  |             self.assertEqual(indexOf(fiter, "d\n"), 1) | 
					
						
							|  |  |  |             self.assertEqual(indexOf(fiter, "e\n"), 0) | 
					
						
							|  |  |  |             self.assertRaises(ValueError, indexOf, fiter, "a\n") | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 unlink(TESTFN) | 
					
						
							|  |  |  |             except OSError: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         iclass = IteratingSequenceClass(3) | 
					
						
							|  |  |  |         for i in range(3): | 
					
						
							|  |  |  |             self.assertEqual(indexOf(iclass, i), i) | 
					
						
							|  |  |  |         self.assertRaises(ValueError, indexOf, iclass, -1) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-23 04:06:05 +00:00
										 |  |  |     # Test iterators with file.writelines(). | 
					
						
							|  |  |  |     def test_writelines(self): | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "w", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-09-23 04:06:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             self.assertRaises(TypeError, f.writelines, None) | 
					
						
							|  |  |  |             self.assertRaises(TypeError, f.writelines, 42) | 
					
						
							| 
									
										
										
										
											2001-10-04 05:36:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-23 04:06:05 +00:00
										 |  |  |             f.writelines(["1\n", "2\n"]) | 
					
						
							|  |  |  |             f.writelines(("3\n", "4\n")) | 
					
						
							|  |  |  |             f.writelines({'5\n': None}) | 
					
						
							|  |  |  |             f.writelines({}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # Try a big chunk too. | 
					
						
							|  |  |  |             class Iterator: | 
					
						
							|  |  |  |                 def __init__(self, start, finish): | 
					
						
							|  |  |  |                     self.start = start | 
					
						
							|  |  |  |                     self.finish = finish | 
					
						
							|  |  |  |                     self.i = self.start | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-21 15:47:16 +00:00
										 |  |  |                 def __next__(self): | 
					
						
							| 
									
										
										
										
											2001-09-23 04:06:05 +00:00
										 |  |  |                     if self.i >= self.finish: | 
					
						
							|  |  |  |                         raise StopIteration | 
					
						
							|  |  |  |                     result = str(self.i) + '\n' | 
					
						
							|  |  |  |                     self.i += 1 | 
					
						
							|  |  |  |                     return result | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 def __iter__(self): | 
					
						
							|  |  |  |                     return self | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             class Whatever: | 
					
						
							|  |  |  |                 def __init__(self, start, finish): | 
					
						
							|  |  |  |                     self.start = start | 
					
						
							|  |  |  |                     self.finish = finish | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 def __iter__(self): | 
					
						
							|  |  |  |                     return Iterator(self.start, self.finish) | 
					
						
							| 
									
										
										
										
											2001-10-04 05:36:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             f.writelines(Whatever(6, 6+2000)) | 
					
						
							| 
									
										
										
										
											2001-09-23 04:06:05 +00:00
										 |  |  |             f.close() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |             f = open(TESTFN, encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-09-23 04:06:05 +00:00
										 |  |  |             expected = [str(i) + "\n" for i in range(1, 2006)] | 
					
						
							|  |  |  |             self.assertEqual(list(f), expected) | 
					
						
							| 
									
										
										
										
											2001-10-04 05:36:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-23 04:06:05 +00:00
										 |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 unlink(TESTFN) | 
					
						
							|  |  |  |             except OSError: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-06-21 02:49:55 +00:00
										 |  |  |     # Test iterators on RHS of unpacking assignments. | 
					
						
							|  |  |  |     def test_unpack_iter(self): | 
					
						
							|  |  |  |         a, b = 1, 2 | 
					
						
							|  |  |  |         self.assertEqual((a, b), (1, 2)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         a, b, c = IteratingSequenceClass(3) | 
					
						
							|  |  |  |         self.assertEqual((a, b, c), (0, 1, 2)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         try:    # too many values | 
					
						
							|  |  |  |             a, b = IteratingSequenceClass(3) | 
					
						
							|  |  |  |         except ValueError: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             self.fail("should have raised ValueError") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         try:    # not enough values | 
					
						
							|  |  |  |             a, b, c = IteratingSequenceClass(2) | 
					
						
							|  |  |  |         except ValueError: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             self.fail("should have raised ValueError") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         try:    # not iterable | 
					
						
							|  |  |  |             a, b, c = len | 
					
						
							|  |  |  |         except TypeError: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             self.fail("should have raised TypeError") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-11 06:12:03 +00:00
										 |  |  |         a, b, c = {1: 42, 2: 42, 3: 42}.values() | 
					
						
							| 
									
										
										
										
											2001-06-21 02:49:55 +00:00
										 |  |  |         self.assertEqual((a, b, c), (42, 42, 42)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "w", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-06-21 02:49:55 +00:00
										 |  |  |         lines = ("a\n", "bb\n", "ccc\n") | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             for line in lines: | 
					
						
							|  |  |  |                 f.write(line) | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							| 
									
										
										
										
											2021-04-06 11:18:41 +09:00
										 |  |  |         f = open(TESTFN, "r", encoding="utf-8") | 
					
						
							| 
									
										
										
										
											2001-06-21 02:49:55 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             a, b, c = f | 
					
						
							|  |  |  |             self.assertEqual((a, b, c), lines) | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 unlink(TESTFN) | 
					
						
							|  |  |  |             except OSError: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         (a, b), (c,) = IteratingSequenceClass(2), {42: 24} | 
					
						
							|  |  |  |         self.assertEqual((a, b, c), (0, 1, 42)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-03 19:33:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-22 20:34:34 +00:00
										 |  |  |     @cpython_only | 
					
						
							|  |  |  |     def test_ref_counting_behavior(self): | 
					
						
							| 
									
										
										
										
											2001-12-03 19:33:25 +00:00
										 |  |  |         class C(object): | 
					
						
							|  |  |  |             count = 0 | 
					
						
							|  |  |  |             def __new__(cls): | 
					
						
							|  |  |  |                 cls.count += 1 | 
					
						
							|  |  |  |                 return object.__new__(cls) | 
					
						
							|  |  |  |             def __del__(self): | 
					
						
							|  |  |  |                 cls = self.__class__ | 
					
						
							|  |  |  |                 assert cls.count > 0 | 
					
						
							|  |  |  |                 cls.count -= 1 | 
					
						
							|  |  |  |         x = C() | 
					
						
							|  |  |  |         self.assertEqual(C.count, 1) | 
					
						
							|  |  |  |         del x | 
					
						
							|  |  |  |         self.assertEqual(C.count, 0) | 
					
						
							|  |  |  |         l = [C(), C(), C()] | 
					
						
							|  |  |  |         self.assertEqual(C.count, 3) | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             a, b = iter(l) | 
					
						
							|  |  |  |         except ValueError: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         del l | 
					
						
							|  |  |  |         self.assertEqual(C.count, 0) | 
					
						
							| 
									
										
										
										
											2001-09-20 21:33:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-16 21:48:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Make sure StopIteration is a "sink state". | 
					
						
							|  |  |  |     # This tests various things that weren't sink states in Python 2.2.1, | 
					
						
							|  |  |  |     # plus various things that always were fine. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_sinkstate_list(self): | 
					
						
							|  |  |  |         # This used to fail | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |         a = list(range(5)) | 
					
						
							| 
									
										
										
										
											2002-07-16 21:48:11 +00:00
										 |  |  |         b = iter(a) | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |         self.assertEqual(list(b), list(range(5))) | 
					
						
							| 
									
										
										
										
											2002-07-16 21:48:11 +00:00
										 |  |  |         a.extend(range(5, 10)) | 
					
						
							|  |  |  |         self.assertEqual(list(b), []) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_sinkstate_tuple(self): | 
					
						
							|  |  |  |         a = (0, 1, 2, 3, 4) | 
					
						
							|  |  |  |         b = iter(a) | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |         self.assertEqual(list(b), list(range(5))) | 
					
						
							| 
									
										
										
										
											2002-07-16 21:48:11 +00:00
										 |  |  |         self.assertEqual(list(b), []) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_sinkstate_string(self): | 
					
						
							|  |  |  |         a = "abcde" | 
					
						
							|  |  |  |         b = iter(a) | 
					
						
							|  |  |  |         self.assertEqual(list(b), ['a', 'b', 'c', 'd', 'e']) | 
					
						
							|  |  |  |         self.assertEqual(list(b), []) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_sinkstate_sequence(self): | 
					
						
							|  |  |  |         # This used to fail | 
					
						
							|  |  |  |         a = SequenceClass(5) | 
					
						
							|  |  |  |         b = iter(a) | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |         self.assertEqual(list(b), list(range(5))) | 
					
						
							| 
									
										
										
										
											2002-07-16 21:48:11 +00:00
										 |  |  |         a.n = 10 | 
					
						
							|  |  |  |         self.assertEqual(list(b), []) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_sinkstate_callable(self): | 
					
						
							|  |  |  |         # This used to fail | 
					
						
							|  |  |  |         def spam(state=[0]): | 
					
						
							|  |  |  |             i = state[0] | 
					
						
							|  |  |  |             state[0] = i+1 | 
					
						
							|  |  |  |             if i == 10: | 
					
						
							| 
									
										
										
										
											2007-08-29 23:37:32 +00:00
										 |  |  |                 raise AssertionError("shouldn't have gotten this far") | 
					
						
							| 
									
										
										
										
											2002-07-16 21:48:11 +00:00
										 |  |  |             return i | 
					
						
							|  |  |  |         b = iter(spam, 5) | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |         self.assertEqual(list(b), list(range(5))) | 
					
						
							| 
									
										
										
										
											2002-07-16 21:48:11 +00:00
										 |  |  |         self.assertEqual(list(b), []) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_sinkstate_dict(self): | 
					
						
							|  |  |  |         # XXX For a more thorough test, see towards the end of: | 
					
						
							|  |  |  |         # http://mail.python.org/pipermail/python-dev/2002-July/026512.html | 
					
						
							|  |  |  |         a = {1:1, 2:2, 0:0, 4:4, 3:3} | 
					
						
							| 
									
										
										
										
											2007-02-11 06:12:03 +00:00
										 |  |  |         for b in iter(a), a.keys(), a.items(), a.values(): | 
					
						
							| 
									
										
										
										
											2002-07-16 21:48:11 +00:00
										 |  |  |             b = iter(a) | 
					
						
							|  |  |  |             self.assertEqual(len(list(b)), 5) | 
					
						
							|  |  |  |             self.assertEqual(list(b), []) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_sinkstate_yield(self): | 
					
						
							|  |  |  |         def gen(): | 
					
						
							|  |  |  |             for i in range(5): | 
					
						
							|  |  |  |                 yield i | 
					
						
							|  |  |  |         b = gen() | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |         self.assertEqual(list(b), list(range(5))) | 
					
						
							| 
									
										
										
										
											2002-07-16 21:48:11 +00:00
										 |  |  |         self.assertEqual(list(b), []) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_sinkstate_range(self): | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |         a = range(5) | 
					
						
							| 
									
										
										
										
											2002-07-16 21:48:11 +00:00
										 |  |  |         b = iter(a) | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |         self.assertEqual(list(b), list(range(5))) | 
					
						
							| 
									
										
										
										
											2002-07-16 21:48:11 +00:00
										 |  |  |         self.assertEqual(list(b), []) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_sinkstate_enumerate(self): | 
					
						
							|  |  |  |         a = range(5) | 
					
						
							|  |  |  |         e = enumerate(a) | 
					
						
							|  |  |  |         b = iter(e) | 
					
						
							| 
									
										
										
										
											2006-08-24 19:48:10 +00:00
										 |  |  |         self.assertEqual(list(b), list(zip(range(5), range(5)))) | 
					
						
							| 
									
										
										
										
											2002-07-16 21:48:11 +00:00
										 |  |  |         self.assertEqual(list(b), []) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-12 23:58:21 +00:00
										 |  |  |     def test_3720(self): | 
					
						
							|  |  |  |         # Avoid a crash, when an iterator deletes its next() method. | 
					
						
							|  |  |  |         class BadIterator(object): | 
					
						
							|  |  |  |             def __iter__(self): | 
					
						
							|  |  |  |                 return self | 
					
						
							|  |  |  |             def __next__(self): | 
					
						
							|  |  |  |                 del BadIterator.__next__ | 
					
						
							|  |  |  |                 return 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             for i in BadIterator() : | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  |         except TypeError: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-18 23:16:02 +02:00
										 |  |  |     def test_extending_list_with_iterator_does_not_segfault(self): | 
					
						
							|  |  |  |         # The code to extend a list with an iterator has a fair | 
					
						
							|  |  |  |         # amount of nontrivial logic in terms of guessing how | 
					
						
							|  |  |  |         # much memory to allocate in advance, "stealing" refs, | 
					
						
							|  |  |  |         # and then shrinking at the end.  This is a basic smoke | 
					
						
							|  |  |  |         # test for that scenario. | 
					
						
							|  |  |  |         def gen(): | 
					
						
							|  |  |  |             for i in range(500): | 
					
						
							|  |  |  |                 yield i | 
					
						
							|  |  |  |         lst = [0] * 500 | 
					
						
							|  |  |  |         for i in range(240): | 
					
						
							|  |  |  |             lst.pop(0) | 
					
						
							|  |  |  |         lst.extend(gen()) | 
					
						
							|  |  |  |         self.assertEqual(len(lst), 760) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-21 20:50:25 +03:00
										 |  |  |     @cpython_only | 
					
						
							|  |  |  |     def test_iter_overflow(self): | 
					
						
							|  |  |  |         # Test for the issue 22939 | 
					
						
							|  |  |  |         it = iter(UnlimitedSequenceClass()) | 
					
						
							|  |  |  |         # Manually set `it_index` to PY_SSIZE_T_MAX-2 without a loop | 
					
						
							|  |  |  |         it.__setstate__(sys.maxsize - 2) | 
					
						
							|  |  |  |         self.assertEqual(next(it), sys.maxsize - 2) | 
					
						
							|  |  |  |         self.assertEqual(next(it), sys.maxsize - 1) | 
					
						
							|  |  |  |         with self.assertRaises(OverflowError): | 
					
						
							|  |  |  |             next(it) | 
					
						
							|  |  |  |         # Check that Overflow error is always raised | 
					
						
							|  |  |  |         with self.assertRaises(OverflowError): | 
					
						
							|  |  |  |             next(it) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_iter_neg_setstate(self): | 
					
						
							|  |  |  |         it = iter(UnlimitedSequenceClass()) | 
					
						
							|  |  |  |         it.__setstate__(-42) | 
					
						
							|  |  |  |         self.assertEqual(next(it), 0) | 
					
						
							|  |  |  |         self.assertEqual(next(it), 1) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
											
												Issue #26494: Fixed crash on iterating exhausting iterators.
Affected classes are generic sequence iterators, iterators of str, bytes,
bytearray, list, tuple, set, frozenset, dict, OrderedDict, corresponding
views and os.scandir() iterator.
											
										 
											2016-03-30 20:40:02 +03:00
										 |  |  |     def test_free_after_iterating(self): | 
					
						
							|  |  |  |         check_free_after_iterating(self, iter, SequenceClass, (0,)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-18 09:22:23 -07:00
										 |  |  |     def test_error_iter(self): | 
					
						
							|  |  |  |         for typ in (DefaultIterClass, NoIterClass): | 
					
						
							|  |  |  |             self.assertRaises(TypeError, iter, typ()) | 
					
						
							| 
									
										
										
										
											2020-06-22 10:43:35 +03:00
										 |  |  |         self.assertRaises(ZeroDivisionError, iter, BadIterableClass()) | 
					
						
							| 
									
										
										
										
											2016-08-18 09:22:23 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-12 14:18:43 +02:00
										 |  |  |     def test_exception_locations(self): | 
					
						
							|  |  |  |         # The location of an exception raised from __init__ or | 
					
						
							|  |  |  |         # __next__ should should be the iterator expression | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         class Iter: | 
					
						
							|  |  |  |             def __init__(self, init_raises=False, next_raises=False): | 
					
						
							|  |  |  |                 if init_raises: | 
					
						
							|  |  |  |                     1/0 | 
					
						
							|  |  |  |                 self.next_raises = next_raises | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             def __next__(self): | 
					
						
							|  |  |  |                 if self.next_raises: | 
					
						
							|  |  |  |                     1/0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             def __iter__(self): | 
					
						
							|  |  |  |                 return self | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         def init_raises(): | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 for x in Iter(init_raises=True): | 
					
						
							|  |  |  |                     pass | 
					
						
							|  |  |  |             except Exception as e: | 
					
						
							|  |  |  |                 return e | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         def next_raises(): | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 for x in Iter(next_raises=True): | 
					
						
							|  |  |  |                     pass | 
					
						
							|  |  |  |             except Exception as e: | 
					
						
							|  |  |  |                 return e | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for func, expected in [(init_raises, "Iter(init_raises=True)"), | 
					
						
							|  |  |  |                                (next_raises, "Iter(next_raises=True)"), | 
					
						
							|  |  |  |                               ]: | 
					
						
							|  |  |  |             with self.subTest(func): | 
					
						
							|  |  |  |                 exc = func() | 
					
						
							|  |  |  |                 f = traceback.extract_tb(exc.__traceback__)[0] | 
					
						
							|  |  |  |                 indent = 16 | 
					
						
							|  |  |  |                 co = func.__code__ | 
					
						
							|  |  |  |                 self.assertEqual(f.lineno, co.co_firstlineno + 2) | 
					
						
							|  |  |  |                 self.assertEqual(f.end_lineno, co.co_firstlineno + 2) | 
					
						
							|  |  |  |                 self.assertEqual(f.line[f.colno - indent : f.end_colno - indent], | 
					
						
							|  |  |  |                                  expected) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-16 21:48:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-20 21:33:42 +00:00
										 |  |  | if __name__ == "__main__": | 
					
						
							| 
									
										
										
										
											2021-09-19 15:27:33 +03:00
										 |  |  |     unittest.main() |