I've got a class Foo that's a running thread, what I'd like to do is limit how much class Bar can access of Foo while still having access to Foo's internals, is that possible?
feedback
|
|
Python is a strongly, dynamically typed language. What this means is:
Python strongly makes use of the so-called "duck typing" technique where objects do not have (and do not need) specifically typed interfaces. If an object supports a certain set of methods (the canonical example is a file-like object), then it can be used in a context that expects file-like objects. | |||
feedback
|
|
According to your question, it looks that you want an instance of IFoo that may act like Foo. Following code does that, but its not recommended to do it that way in Python.
Better way is to simply use (multi)inheritance:
| |||
|
feedback
|