@@ -730,14 +730,7 @@ When an instance method object is derived from a :class:`classmethod` object, th
730730itself, so that calling either ``x.f(1) `` or ``C.f(1) `` is equivalent to
731731calling ``f(C,1) `` where ``f `` is the underlying function.
732732
733- Note that the transformation from:ref: `function object <user-defined-funcs >`
734- to instance method
735- object happens each time the attribute is retrieved from the instance. In
736- some cases, a fruitful optimization is to assign the attribute to a local
737- variable and call that local variable. Also notice that this
738- transformation only happens for user-defined functions; other callable
739- objects (and all non-callable objects) are retrieved without
740- transformation. It is also important to note that user-defined functions
733+ It is important to note that user-defined functions
741734which are attributes of a class instance are not converted to bound
742735methods; this *only * happens when the function is an attribute of the
743736class.