Your class's __init__
method adds a bound method as an attribute to instances of your class. This isn't exactly the same as adding the attribute to the class. Normally, methods work by storing functions in the class, as attributes, and then creating method objects as these functions are retrieved as attributes from either the class (creating unbound methods which only know the class they belong to) or the instance (creating bound methods, which know their instance.)
How does that differ from what you're doing? Well, you assign to the GET
instance attribute of a specific instance, not the class. The bound method becomes part of the instance's data:
>>> s.__dict__
{'GET': <bound method Sub.get of <__main__.Sub object at 0xb70896cc>>}
Notice how the method is there under the key GET
, but not under get
. GET
is an instance attribute, but get
is not. This is subtly different in a number of ways: the method doesn't exist in the class object, so you can't do Sub.GET(instance)
to call Sub
's GET
method, even though you can do Sub.get(instance)
. Secondly, if you have a subclass of Sub that defines its own GET
method but not its own get
method, the instance attribute would hide the subclass GET
method with the bound get
method from the baseclass. Thirdly it creates a circular reference between the bound method and the instance: the bound method has a reference to the instance, and the instance now stores a reference to the bound method. Normally bound methods are not stored on the instance partly to avoid that. Circular references are usually not a big issue, because we nowadays have the cyclic-gc module (gc
) that takes care of them, but it can't always clean up reference cycles (for instance, when your class also has a __del__
method.) And lastly, storing bound method objects generally makes your instances unserializable: most serializers (such as pickle
) can't handle bound methods.
You may not care about any of these issues, but if you do, there's a better approach to what you're trying to do: metaclasses. Instead of assigning bound methods to instance attributes as you create instances, you can assign normal functions to class attributes as you create the class:
class MethodAliasingType(type):
def __init__(self, name, bases, attrs):
# attrs is the dict of attributes that was used to create the
# class 'self', modifying it has no effect on the class.
# So use setattr() to set the attribute.
for k, v in attrs.iteritems():
if not hasattr(self, k.upper()):
setattr(self, k.upper(), v)
super(MethodAliasingType, self).__init__(name, bases, attrs)
class Base(object):
__metaclass__ = MethodAliasingType
class Sub(Base):
def get(self):
pass
Now, Sub.get
and Sub.GET
really are aliases, and overriding the one and not the other in a subclass works as expected.
>>> Sub.get
<unbound method Sub.get>
>>> Sub.GET
<unbound method Sub.get>
>>> Sub().get
<bound method Sub.get of <__main__.Sub object at 0xb708978c>>
>>> Sub().GET
<bound method Sub.get of <__main__.Sub object at 0xb7089a6c>>
>>> Sub().__dict__
{}
(Of course, if you don't want overriding the one and not the other to work, you can simply make this an error in your metaclass.) You can do the same thing as the metaclass using class decorators (in Python 2.6 and later), but it would mean requiring the class decorator on every subclass of Base -- class decorators aren't inherited.