Guest User

Untitled

a guest
Dec 23rd, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.32 KB | None | 0 0
  1. '''
  2. Created on 2011-09-28
  3.  
  4. @author: rob
  5. '''
  6.  
  7. class Logger:
  8.     '''
  9.    classdocs
  10.    '''
  11.  
  12.  
  13.     def __init__(self, username, password):
  14.         '''
  15.        Constructor
  16.        '''
  17.         self.username = username
  18.         self.password = password
  19.        
  20.        
  21.     def state(self):
  22.         return False
Add Comment
Please, Sign In to add comment