blob: cc6255f61ae21144a1d14ea8cb4581cd5cd232ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
"""Compatibility wrapper for cProfile module.
This module maintains backward compatibility by importing from the new
profiling.tracing module.
"""
from profiling.tracing import run, runctx, Profile
__all__ = ["run", "runctx", "Profile"]
if __name__ == "__main__":
from profiling.tracing.__main__ import main
main()
|