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 / instance_variable.py
Size: Mime:
class Foo:
    def __init__(self):
        self.attr1 = None  #: docstring foo
        self.attr2 = None  #: docstring foo


class Bar(Foo):
    def __init__(self):
        self.attr2 = None  #: docstring bar
        self.attr3 = None  #: docstring bar
        self.attr4 = None