Guest User

Untitled

a guest
Jul 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Loader(object):
  2.  
  3. _instance = None #< Singleton
  4.  
  5. def __new__(klass):
  6. if(None == Loader._instance):
  7. Loader._instance = super(Loader, klass).__new__(klass)
  8.  
  9. return Loader._instance
Add Comment
Please, Sign In to add comment