Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. class MyClass(object):
  2.  
  3. """Docstring for MyClass. """
  4.  
  5. def __init__(self, user, password):
  6. """TODO: to be defined.
  7.  
  8. :user: TODO
  9. :password: TODO
  10.  
  11. """
  12. self._user = user # this is the pattern I'm unfamiliar with
  13. self._password = password
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement