"""Demo file for Python API documentation generation.This defines some entities that are aliased into the `tensorstore_demo` module."""importtyping
[docs]classFoo:""" This is a class defined in the ``tensorstore_demo._tensorstore`` module but should appear to be defined in the ``tensorstore_demo`` module. Group: Some other group """
[docs]defbar(self,x:int)->int:"""Returns :py:param:`x`. :param x: Parameter to :py:obj:`.bar`. """pass
[docs]defbar(x:Foo)->Foo:"""Returns :py:param:`x`. :param x: Parameter to :py:obj:`.bar`. Group: Some other group. """pass
bar_also=bar
[docs]classFooSubclass(Foo):"""This is a subclass of :py:obj:`.Foo`. Group: Some other group. """
[docs]defbaz(self,x:str)->str:"""Does the baz operation."""returnx