profiler.pyi 310 Bytes
Newer Older
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
1
2
3
4
5
6
7
8
# Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.

from typing import Any, ContextManager, Optional

class record_function(ContextManager[None]):
    def __init__(self, name: str) -> None: ...
    def __enter__(self) -> None: ...
    def __exit__(self, *args: Any) -> Optional[bool]: ...