mirror of
https://github.com/python/cpython.git
synced 2026-05-06 12:49:07 -04:00
24 lines
655 B
Python
24 lines
655 B
Python
"""Statistical sampling profiler for Python.
|
|
|
|
This module provides low-overhead profiling by periodically sampling the
|
|
call stack rather than tracing every function call.
|
|
"""
|
|
|
|
from .collector import Collector
|
|
from .pstats_collector import PstatsCollector
|
|
from .stack_collector import CollapsedStackCollector
|
|
from .heatmap_collector import HeatmapCollector
|
|
from .gecko_collector import GeckoCollector
|
|
from .jsonl_collector import JsonlCollector
|
|
from .string_table import StringTable
|
|
|
|
__all__ = (
|
|
"Collector",
|
|
"PstatsCollector",
|
|
"CollapsedStackCollector",
|
|
"HeatmapCollector",
|
|
"GeckoCollector",
|
|
"JsonlCollector",
|
|
"StringTable",
|
|
)
|