mirror of
https://github.com/python/cpython.git
synced 2025-11-07 00:51:49 +00:00
Signed-off-by: Pablo Galindo Salgado <pablogsal@gmail.com> Co-authored-by: Pablo Galindo Salgado <pablogsal@gmail.com>
13 lines
494 B
Python
13 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")
|