Guest User

Untitled

a guest
Feb 21st, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. dir/
  2. modA.py
  3. modB.py
  4. modC.py
  5.  
  6. import modB
  7.  
  8. instB = modB.clsB()
  9.  
  10. print("Successful")
  11.  
  12. import modC
  13.  
  14. list = [modC.clsC]
  15.  
  16. class clsB:
  17. def __init__(self):
  18. pass
  19.  
  20. from modB import clsB
  21.  
  22. instB = clsB()
  23.  
  24. class clsC(clsB):
  25. def __init__(self):
  26. pass
Add Comment
Please, Sign In to add comment