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.py652 support.check_free_after_iterating(self, iter, self.OrderedDict)
653 support.check_free_after_iterating(self, lambda d: iter(d.keys()), self.OrderedDict)
654 support.check_free_after_iterating(self, lambda d: iter(d.values()), self.OrderedDict)
655 support.check_free_after_iterating(self, lambda d: iter(d.items()), self.OrderedDict)
Dseq_tests.py427 support.check_free_after_iterating(self, iter, self.type2test)
428 support.check_free_after_iterating(self, reversed, self.type2test)
Dtest_dict.py1250 support.check_free_after_iterating(self, iter, dict)
1251 support.check_free_after_iterating(self, lambda d: iter(d.keys()), dict)
1252 support.check_free_after_iterating(self, lambda d: iter(d.values()), dict)
1253 support.check_free_after_iterating(self, lambda d: iter(d.items()), dict)
Dtest_iter.py6 from test.support import check_free_after_iterating, ALWAYS_EQ, NEVER_EQ
1031 check_free_after_iterating(self, iter, SequenceClass, (0,))
Dtest_array.py1063 support.check_free_after_iterating(self, iter, array.array,
1065 support.check_free_after_iterating(self, reversed, array.array,
Dtest_bytes.py935 test.support.check_free_after_iterating(self, iter, self.type2test)
936 test.support.check_free_after_iterating(self, reversed, self.type2test)
Dtest_unicode.py2456 support.check_free_after_iterating(self, iter, str)
2457 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__.py2708 def check_free_after_iterating(test, iter, cls, args=()): function
/external/python/cpython3/Doc/library/
Dtest.rst1250 .. function:: check_free_after_iterating(test, iter, cls, args=())