Guest User

Untitled

a guest
May 16th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. class webthing:
  2.  
  3. def __init__( self, foo, **kwargs):
  4. self.setup(fooModified=modified(foo), **kwargs)
  5.  
  6. def setup(self, host = DEFAULT_HOST,
  7. fooModified = DEFAULT_FOO,
  8. port = DEFAULT_PORT,
  9. user = DEFAULT_USER,
  10. pass = DEFAULT_PASS):
  11. print host;
  12. print port;
  13. print user;
  14. print pass;
  15. print fooModified
  16. # do setup stuff
Add Comment
Please, Sign In to add comment