diff options
Diffstat (limited to 'Lib/profile/__init__.py')
-rw-r--r-- | Lib/profile/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/profile/__init__.py b/Lib/profile/__init__.py new file mode 100644 index 00000000000..21c886448ac --- /dev/null +++ b/Lib/profile/__init__.py @@ -0,0 +1,6 @@ +from .profile import run +from .profile import runctx +from .profile import Profile +from .profile import _Utils + +__all__ = ['run', 'runctx', 'Profile'] |