Guest User

Untitled

a guest
Jul 23rd, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. class Test:
  2. def __init__(self):
  3. self.parent = None
  4.  
  5. def add_parent(self, parent):
  6. self.parent = parent
  7.  
  8. root = Test()
  9. child = Test()
  10. child.add_parent(root)
Add Comment
Please, Sign In to add comment