mirror of
https://github.com/python/cpython.git
synced 2025-11-09 01:51:26 +00:00
6 lines
129 B
Python
6 lines
129 B
Python
"""Run the tracing profiler from the command line."""
|
|
|
|
from profiling.tracing import main
|
|
|
|
if __name__ == '__main__':
|
|
main()
|