Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Sphinx / tests / roots / test-ext-autodoc / target / callable.py
Size: Mime:
class Callable():
    """A callable object that behaves like a function."""

    def __call__(self, arg1, arg2, **kwargs):
        pass

    def method(self, arg1, arg2):
        """docstring of Callable.method()."""
        pass


function = Callable()
method = function.method