Searched refs:check_free_after_iterating (Results 1 - 9 of 9) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test_ordered_dict.py | 671 support.check_free_after_iterating(self, iter, self.OrderedDict) 672 support.check_free_after_iterating(self, lambda d: iter(d.keys()), self.OrderedDict) 673 support.check_free_after_iterating(self, lambda d: iter(d.values()), self.OrderedDict) 674 support.check_free_after_iterating(self, lambda d: iter(d.items()), self.OrderedDict)
|
H A D | seq_tests.py | 430 support.check_free_after_iterating(self, iter, self.type2test) 431 support.check_free_after_iterating(self, reversed, self.type2test)
|
H A D | test_dict.py | 1270 support.check_free_after_iterating(self, iter, dict) 1271 support.check_free_after_iterating(self, lambda d: iter(d.keys()), dict) 1272 support.check_free_after_iterating(self, lambda d: iter(d.values()), dict) 1273 support.check_free_after_iterating(self, lambda d: iter(d.items()), dict)
|
H A D | test_iter.py | 7 from test.support import check_free_after_iterating, ALWAYS_EQ, NEVER_EQ namespace 1139 check_free_after_iterating(self, iter, SequenceClass, (0,))
|
H A D | test_array.py | 1156 support.check_free_after_iterating(self, iter, array.array, 1158 support.check_free_after_iterating(self, reversed, array.array,
|
H A D | test_bytes.py | 955 test.support.check_free_after_iterating(self, iter, self.type2test) 956 test.support.check_free_after_iterating(self, reversed, self.type2test)
|
H A D | test_unicode.py | 2596 support.check_free_after_iterating(self, iter, str) 2597 support.check_free_after_iterating(self, reversed, str)
|
H A D | test_set.py | 356 support.check_free_after_iterating(self, iter, self.thetype)
|
/third_party/python/Lib/test/support/ |
H A D | __init__.py | 1806 def check_free_after_iterating(test, iter, cls, args=()): function
|
Completed in 20 milliseconds