mirror of
https://github.com/python/cpython.git
synced 2025-11-04 15:41:43 +00:00
12 lines
379 B
Python
12 lines
379 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
|
||
|
|
|
||
|
|
__all__ = ("Collector", "PstatsCollector", "CollapsedStackCollector")
|