super(x) returns an "unbound" descriptor, that is, an object that knows how to get data, but has no idea where. If you assign super(x) to a class attribute and then retrieve it, the descriptor machinery cares for proper binding:
class A(object):
def foo(self):
print 'parent'
class B(A):
def foo(self):
print 'child'
B.parent = super(B)
B().foo()
B().parent.foo()