Home
last modified time | relevance | path

Searched refs:most_recent_first (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Lib/
Dtracemalloc.py214 def format(self, limit=None, most_recent_first=False): argument
224 if most_recent_first:
/external/python/cpython3/Lib/test/
Dtest_tracemalloc.py593 self.assertEqual(tb.format(most_recent_first=True),
599 self.assertEqual(tb.format(limit=1, most_recent_first=True),
603 self.assertEqual(tb.format(limit=-1, most_recent_first=True),
/external/python/cpython3/Doc/library/
Dtracemalloc.rst669 .. method:: format(limit=None, most_recent_first=False)
675 If *most_recent_first* is ``True``, the order of the formatted frames
/external/python/cpython3/Misc/NEWS.d/
D3.7.0a3.rst378 frames. To get the old behaviour, one can use the new *most_recent_first*
/external/python/cpython3/Doc/whatsnew/
D3.7.rst1471 the new *most_recent_first* argument to ``Traceback.format()``.