Searched refs:check_free_after_iterating (Results 1 – 18 of 18) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_ordered_dict.py | 284 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)
|
D | test_dict.py | 692 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)
|
D | seq_tests.py | 408 support.check_free_after_iterating(self, iter, self.type2test) 409 support.check_free_after_iterating(self, reversed, self.type2test)
|
D | test_iter.py | 6 check_free_after_iterating 937 check_free_after_iterating(self, iter, SequenceClass, (0,))
|
D | test_bytes.py | 476 test.test_support.check_free_after_iterating(self, iter, self.type2test) 477 test.test_support.check_free_after_iterating(self, reversed, self.type2test)
|
D | test_unicode.py | 1669 test_support.check_free_after_iterating(self, iter, unicode) 1670 test_support.check_free_after_iterating(self, reversed, unicode)
|
D | test_set.py | 344 test_support.check_free_after_iterating(self, iter, self.thetype)
|
/external/python/cpython3/Lib/test/ |
D | test_ordered_dict.py | 648 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)
|
D | test_dict.py | 1135 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)
|
D | seq_tests.py | 415 support.check_free_after_iterating(self, iter, self.type2test) 416 support.check_free_after_iterating(self, reversed, self.type2test)
|
D | test_iter.py | 6 from test.support import check_free_after_iterating 1004 check_free_after_iterating(self, iter, SequenceClass, (0,))
|
D | test_array.py | 1083 support.check_free_after_iterating(self, iter, array.array, 1085 support.check_free_after_iterating(self, reversed, array.array,
|
D | test_bytes.py | 814 test.support.check_free_after_iterating(self, iter, self.type2test) 815 test.support.check_free_after_iterating(self, reversed, self.type2test)
|
D | test_unicode.py | 2440 support.check_free_after_iterating(self, iter, str) 2441 support.check_free_after_iterating(self, reversed, str)
|
D | test_set.py | 366 support.check_free_after_iterating(self, iter, self.thetype)
|
/external/python/cpython2/Lib/test/support/ |
D | __init__.py | 1912 def check_free_after_iterating(test, iter, cls, args=()): function
|
/external/python/cpython3/Lib/test/support/ |
D | __init__.py | 2712 def check_free_after_iterating(test, iter, cls, args=()): function
|
/external/python/cpython3/Doc/library/ |
D | test.rst | 1138 .. function:: check_free_after_iterating(test, iter, cls, args=())
|