Skip to content

Python module example

Mykhailo Omel'chuk edited this page Aug 1, 2017 · 2 revisions
"""Document string for module
"""

from systemmodule import method

from thirdpartymodule import method

from mymodule import method


class NewClass(object):
    
    """Document string for class
    """

    def method(self):
        """Document string for method
        """        
        pass
        
    def method(self):
        """Document string for method
        """        
        pass
        

Clone this wiki locally