Sophie

Sophie

distrib > Fedora > 16 > i386 > by-pkgid > 6549b9d2a5249abe7bf6b58a49205570 > files > 153

doxygen-1.7.5-1.fc16.i686.rpm

"""@package docstring
Documentation for this module.

More details.
"""

def func():
    """Documentation for a function.

    More details.
    """
    pass

class PyClass:
    """Documentation for a class.

    More details.
    """
   
    def __init__(self):
        """The constructor."""
        self._memVar = 0;
   
    def PyMethod(self):
        """Documentation for a method."""
        pass