pdkmaster top module

Coding conventions

  • Classes of which no object are supposed to be created in user code start with an underscore. Typically this means that the object should typically be generated from a Factory or other object that can generate this object. It thus typically means that no backwards guarantee is given for the __init__() method of the class.

  • functions, object methods and attributes starting with an underscore are for internal use only. No backwards guarantee is given and they may be changed or removed.

Module hierarchy