Home
last modified time | relevance | path

Searched refs:filename_pattern (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Lib/
Dtracemalloc.py328 def __init__(self, inclusive, filename_pattern, argument
332 self._filename_pattern = _normalize_filename(filename_pattern)
338 def filename_pattern(self): member in Filter
/external/python/cpython3/Doc/library/
Dtracemalloc.rst387 .. class:: Filter(inclusive: bool, filename_pattern: str, lineno: int=None, all_frames: bool=False,…
392 *filename_pattern*. The ``'.pyc'`` file extension is
421 in a file with a name matching :attr:`filename_pattern` at line number
425 a file with a name matching :attr:`filename_pattern` at line number
433 .. attribute:: filename_pattern
/external/python/cpython3/Lib/test/
Dtest_tracemalloc.py615 self.assertEqual(f.filename_pattern, "abc")
622 self.assertEqual(f.filename_pattern, "test.py")
627 … f = tracemalloc.Filter(inclusive=False, filename_pattern="test.py", lineno=123, all_frames=True)
629 self.assertEqual(f.filename_pattern, "test.py")