mirror of
https://github.com/python/cpython.git
synced 2026-07-29 05:08:36 -04:00
Signed-off-by: Pablo Galindo Salgado <[email protected]> Co-authored-by: Pablo Galindo Salgado <[email protected]>
14 lines
494 B
Python
14 lines
494 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 .gecko_collector import GeckoCollector
|
|
from .string_table import StringTable
|
|
|
|
__all__ = ("Collector", "PstatsCollector", "CollapsedStackCollector", "GeckoCollector", "StringTable")
|