Source code for tensorstore_demo._tensorstore

"""Demo file for Python API documentation generation.

This defines some entities that are aliased into the `tensorstore_demo` module.
"""

import typing


[docs] class Foo: """ 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] def bar(self, x: int) -> int: """Returns :py:param:`x`. :param x: Parameter to :py:obj:`.bar`. """ pass
[docs] def bar(x: Foo) -> Foo: """Returns :py:param:`x`. :param x: Parameter to :py:obj:`.bar`. Group: Some other group. """ pass
[docs] class FooSubclass(Foo): """This is a subclass of :py:obj:`.Foo`. Group: Some other group. """
[docs] def baz(self, x: str) -> str: """Does the baz operation.""" return x
@typing.overload def overloaded_method(self, x: int) -> int: pass @typing.overload def overloaded_method(self, x: str) -> str: pass
[docs] def overloaded_method(self, x): """Returns its argument.""" return x

Last update: Apr 16, 2024