str: ... # This is a basic modu…> Optional[~T]: ... # This is a function w…> demo_long.Foo: ... # This is a regular me…> <@cache method def a_cached_function(self) -> str: ... # This is method with …> <@classmethod class def a_class_method(cls) -> int: ... # This is what a `@cla…> <@staticmethod static def a_static_method(): ... # This is what a `@sta…> > > demo_long.Foo: ... # inherited from demo_long.Foo.a_regular_function, This is a regular me…> <@cache method def a_cached_function(self) -> str: ... # inherited from demo_long.Foo.a_cached_function, This is method with …> <@classmethod class def a_class_method(cls) -> int: ... # inherited from demo_long.Foo.a_class_method, This is what a `@cla…> <@staticmethod static def a_static_method(): ... # inherited from demo_long.Foo.a_static_method, This is what a `@sta…> > int: ... # This is an example o…> <@cache function def fib(n): ... # This is an example o…> demo_long.Foo: ... # inherited from demo_long.Foo.a_regular_function, This is a regular me…> <@cache method def a_cached_function(self) -> str: ... # inherited from demo_long.Foo.a_cached_function, This is method with …> <@classmethod class def a_class_method(cls) -> int: ... # inherited from demo_long.Foo.a_class_method, This is what a `@cla…> <@staticmethod static def a_static_method(): ... # inherited from demo_long.Foo.a_static_method, This is what a `@sta…> > <@dataclass class demo_long.DataDemo # This is an example f… > <@dataclass class demo_long.DataDemoExtended > # I am the red.> # I am green.> > > >