0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
~681 People Reached
About Me
im a pretty laid back guy, if u ask me. i dont know what everyone else will tell you.
Favorite Forums
Favorite Tags
python x 2
2 Posted Topics
Re: you could use from mod import cls1 class cls2(cls1): pass or like the last comment says import mod class cls2(mod.cls1): pass the way python imports work, when you say `import MODULE` you are importing the MODULE namespace into your current global namespace. so you can then access objects within MODULE … |
The End.