What is Python's equivalent of Ruby's method_missing method? I tried using __getattr__ but this hook applies to fields too. I only want to intercept the method invocations. What is the Python way to do it?
|
|
||||
|
|
|
There is no difference in Python between properties and methods. A method is just a property, whose type is just If you want to implement this, your |
|||||
|
|
Python doesn't distinguish between methods and attributes the way Ruby does. Methods and other object attributes are looked up in exactly the same way in Python -- not even Python knows the difference at the look-up stage. Until the attribute is found, it's just a string. May I ask why you care? I can't see any particular reason why you would need this functionality. |
|||||||||||
|
|
Although I don't recommend it!!!!!!!!!!!!!!!!!!!!! ,this sort of comes closer to implementing the behaviour of calling the special method for every name that does not correspond to a callable attribute/method. Of course they still don't really have separate namespaces so it may feel a bit weird. It works by overidding It doesn't allow you to access the calling object because I couldn't think of a good way to do that without sort of leaking memory(the calling object) if it's already a non-callable attribute which you store(the only think I can think of is to start a new thread that deletes it after a minute, by then you have presumably called it unless you are using it in a closure which wouldn't be supported in that case). Edit: I forgot callable may have some false positives. depends on the http://pypi.python.org/pypi/ProxyTypes library
|
||||
|
|