mirror of
https://github.com/python/cpython.git
synced 2025-11-07 00:51:49 +00:00
7 lines
120 B
Python
7 lines
120 B
Python
|
|
"""Run the sampling profiler from the command line."""
|
||
|
|
|
||
|
|
from .sample import main
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
main()
|