cpython/Lib/profiling/sampling/__main__.py
2025-08-27 17:52:50 +01:00

6 lines
120 B
Python

"""Run the sampling profiler from the command line."""
from .sample import main
if __name__ == '__main__':
main()