INNER CODE UNIT · Python

ScopedZone

Hekbas/Luth · luth/extern/source/tracy/python/tracy_client/scoped.py:19

class ScopedZone(_ScopedZone):
    def __init__(
        self,
        name: Optional[str] = None,
        color: Color = 0,
        depth: Optional[int] = None,
        active: bool = True,
    ) -> None:
        frame = sys._getframe(1)
        _ScopedZone.__init__(
            self,
            name,
            int(color),
            depth,
            active,
            frame.f_code.co_name,
            frame.f_code.co_filename,
            frame.f_lineno,

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…