Blame examples/docstring.py

Packit Service 50c9f2
"""@package docstring
Packit Service 50c9f2
Documentation for this module.
Packit Service 50c9f2
Packit Service 50c9f2
More details.
Packit Service 50c9f2
"""
Packit Service 50c9f2
Packit Service 50c9f2
def func():
Packit Service 50c9f2
    """Documentation for a function.
Packit Service 50c9f2
Packit Service 50c9f2
    More details.
Packit Service 50c9f2
    """
Packit Service 50c9f2
    pass
Packit Service 50c9f2
Packit Service 50c9f2
class PyClass:
Packit Service 50c9f2
    """Documentation for a class.
Packit Service 50c9f2
Packit Service 50c9f2
    More details.
Packit Service 50c9f2
    """
Packit Service 50c9f2
   
Packit Service 50c9f2
    def __init__(self):
Packit Service 50c9f2
        """The constructor."""
Packit Service 50c9f2
        self._memVar = 0;
Packit Service 50c9f2
   
Packit Service 50c9f2
    def PyMethod(self):
Packit Service 50c9f2
        """Documentation for a method."""
Packit Service 50c9f2
        pass
Packit Service 50c9f2