Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagepy
linenumberstrue
# license: https://openwsn.atlassian.net/wiki/display/OW/License
'''
Introductory text to this module
 
.. moduleauthor:: First Last <first.last@domain.com>
'''

#============================ import ==========================================

import os

#============================ body ============================================

class MyClass(object):
    '''
    Description of class.
    '''
    
    def myMethod(self,myParam,myKey="value"):
        '''
        Description of method.
        
        .. note::
          Something to note.
        :param myParam: Description of myParam
        :type  myParam: str
        :key   myKey:   Description of myKey
        :type  myKey:   str
 :rtype       
        :raise:         Description of returned value exception raised.
 
        :returns:       Description of the return value.
        :rtype:         Return type.
        '''
        
        return None