Guest User

Untitled

a guest
Oct 18th, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. class myClass:
  2. def __init__(self, appId):
  3. self.appID = appId
  4.  
  5. self.username = ""
  6. self.password = ""
  7.  
  8. self.error = 0
  9.  
  10. def setUsername(self, uname):
  11. self.username = hashlib.md5(uname)
  12.  
  13. username = property(fset = setUsername)
Add Comment
Please, Sign In to add comment