Blame examples/pyexample.py

Packit Service 50c9f2
## @package pyexample
Packit Service 50c9f2
#  Documentation for this module.
Packit Service 50c9f2
#
Packit Service 50c9f2
#  More details.
Packit Service 50c9f2
Packit Service 50c9f2
## Documentation for a function.
Packit Service 50c9f2
#
Packit Service 50c9f2
#  More details.
Packit Service 50c9f2
def func():
Packit Service 50c9f2
    pass
Packit Service 50c9f2
Packit Service 50c9f2
## Documentation for a class.
Packit Service 50c9f2
#
Packit Service 50c9f2
#  More details.
Packit Service 50c9f2
class PyClass:
Packit Service 50c9f2
   
Packit Service 50c9f2
    ## The constructor.
Packit Service 50c9f2
    def __init__(self):
Packit Service 50c9f2
        self._memVar = 0;
Packit Service 50c9f2
   
Packit Service 50c9f2
    ## Documentation for a method.
Packit Service 50c9f2
    #  @param self The object pointer.
Packit Service 50c9f2
    def PyMethod(self):
Packit Service 50c9f2
        pass
Packit Service 50c9f2
     
Packit Service 50c9f2
    ## A class variable.
Packit Service 50c9f2
    classVar = 0;
Packit Service 50c9f2
Packit Service 50c9f2
    ## @var _memVar
Packit Service 50c9f2
    #  a member variable