Advertisement
Guest User

Untitled

a guest
May 4th, 2016
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. foo1
  2. +--->bar
  3. | --->context
  4. +--->baz
  5. | +--->context
  6. | --->qux
  7. --->context
  8.  
  9. def __getstate__(self):
  10. my_dict = dict(self.__dict__)
  11. my_dict['context'] = None # We don't save the context
  12. return my_dict
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement