Home
last modified time | relevance | path

Searched refs:check_free_after_iterating (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_ordered_dict.py284 test_support.check_free_after_iterating(self, iter, OrderedDict)
285 test_support.check_free_after_iterating(self, lambda d: d.iterkeys(), OrderedDict)
286 test_support.check_free_after_iterating(self, lambda d: d.itervalues(), OrderedDict)
287 test_support.check_free_after_iterating(self, lambda d: d.iteritems(), OrderedDict)
288 test_support.check_free_after_iterating(self, lambda d: iter(d.viewkeys()), OrderedDict)
289 test_support.check_free_after_iterating(self, lambda d: iter(d.viewvalues()), OrderedDict)
290 test_support.check_free_after_iterating(self, lambda d: iter(d.viewitems()), OrderedDict)
Dtest_dict.py692 test_support.check_free_after_iterating(self, iter, dict)
693 test_support.check_free_after_iterating(self, lambda d: d.iterkeys(), dict)
694 test_support.check_free_after_iterating(self, lambda d: d.itervalues(), dict)
695 test_support.check_free_after_iterating(self, lambda d: d.iteritems(), dict)
696 test_support.check_free_after_iterating(self, lambda d: iter(d.viewkeys()), dict)
697 test_support.check_free_after_iterating(self, lambda d: iter(d.viewvalues()), dict)
698 test_support.check_free_after_iterating(self, lambda d: iter(d.viewitems()), dict)
Dseq_tests.py408 support.check_free_after_iterating(self, iter, self.type2test)
409 support.check_free_after_iterating(self, reversed, self.type2test)
Dtest_iter.py6 check_free_after_iterating
937 check_free_after_iterating(self, iter, SequenceClass, (0,))
Dtest_bytes.py476 test.test_support.check_free_after_iterating(self, iter, self.type2test)
477 test.test_support.check_free_after_iterating(self, reversed, self.type2test)
Dtest_unicode.py1669 test_support.check_free_after_iterating(self, iter, unicode)
1670 test_support.check_free_after_iterating(self, reversed, unicode)
Dtest_set.py344 test_support.check_free_after_iterating(self, iter, self.thetype)
/external/python/cpython3/Lib/test/
Dtest_ordered_dict.py648 support.check_free_after_iterating(self, iter, self.OrderedDict)
649 support.check_free_after_iterating(self, lambda d: iter(d.keys()), self.OrderedDict)
650 support.check_free_after_iterating(self, lambda d: iter(d.values()), self.OrderedDict)
651 support.check_free_after_iterating(self, lambda d: iter(d.items()), self.OrderedDict)
Dtest_dict.py1135 support.check_free_after_iterating(self, iter, dict)
1136 support.check_free_after_iterating(self, lambda d: iter(d.keys()), dict)
1137 support.check_free_after_iterating(self, lambda d: iter(d.values()), dict)
1138 support.check_free_after_iterating(self, lambda d: iter(d.items()), dict)
Dseq_tests.py415 support.check_free_after_iterating(self, iter, self.type2test)
416 support.check_free_after_iterating(self, reversed, self.type2test)
Dtest_iter.py6 from test.support import check_free_after_iterating
1004 check_free_after_iterating(self, iter, SequenceClass, (0,))
Dtest_array.py1083 support.check_free_after_iterating(self, iter, array.array,
1085 support.check_free_after_iterating(self, reversed, array.array,
Dtest_bytes.py814 test.support.check_free_after_iterating(self, iter, self.type2test)
815 test.support.check_free_after_iterating(self, reversed, self.type2test)
Dtest_unicode.py2440 support.check_free_after_iterating(self, iter, str)
2441 support.check_free_after_iterating(self, reversed, str)
Dtest_set.py366 support.check_free_after_iterating(self, iter, self.thetype)
/external/python/cpython2/Lib/test/support/
D__init__.py1912 def check_free_after_iterating(test, iter, cls, args=()): function
/external/python/cpython3/Lib/test/support/
D__init__.py2712 def check_free_after_iterating(test, iter, cls, args=()): function
/external/python/cpython3/Doc/library/
Dtest.rst1138 .. function:: check_free_after_iterating(test, iter, cls, args=())