vote up 0 vote down star

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?

flag

75% accept rate
2  
Your question is unclear. Are you asking if it is possible to make a new instance of an object? – Crashworks Nov 6 at 8:30
1  
Alex Martelli's answer at stackoverflow.com/questions/1547145/… is a good answer to this question. – Greg Hewgill Nov 6 at 9:10
1  
Seeing the answers below, next time you should put your question clearly from the start and not change it so completely, it's most confusing and wasted time for the others who are trying to help. – RedGlyph Nov 6 at 10:27
You should rename your question! – Casebash Nov 8 at 0:50

2 Answers

vote up 0 vote down

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.

class IFoo(object): pass
class Foo(IFoo): pass

f = IFoo()
Foo.__init__(f)

Better way is to simply use (multi)inheritance:

class IFoo(object):
    def __init__(self, *args, **kwargs):
        pass

class Foo(IFoo):
    def __init__(self, *args, **kwargs):
        IFoo.__init__(self, *args, **kwargs)

f = Foo()
link|flag
this code is for your previous version of question: IFoo f = new Foo(); – mtasic Nov 6 at 9:07
vote up 1 vote down

Python is a strongly, dynamically typed language. What this means is:

  • Objects are strongly typed which means an integer is an integer and can't be treated as anything else unless you say so. Objects have a specific type and stay that way.
  • You can use a name (a variable) to refer to an object, but the name doesn't have any particular type. It all depends on what the name refers to, and this can change as other things are assigned to the same name.

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.

link|flag
I had to see the original question to understand how it was related, sorry the OP changed it so dramatically... – RedGlyph Nov 6 at 10:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.