Searched refs:exception_throwing_generator (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | _test_multiprocessing.py | 2615 def exception_throwing_generator(total, when): function 2702 self.pool.map(sqr, exception_throwing_generator(1, -1), 1) 2705 self.pool.map(sqr, exception_throwing_generator(1, -1), 1) 2708 self.pool.map(sqr, exception_throwing_generator(10, 3), 1) 2761 it = self.pool.imap(sqr, exception_throwing_generator(1, -1), 1) 2764 it = self.pool.imap(sqr, exception_throwing_generator(1, -1), 1) 2767 it = self.pool.imap(sqr, exception_throwing_generator(10, 3), 1) 2773 it = self.pool.imap(sqr, exception_throwing_generator(20, 7), 2) 2777 it = self.pool.imap(sqr, exception_throwing_generator(20, 7), 4) 2795 exception_throwing_generator(1, -1), [all …]
|