#6808: clarification.

This commit is contained in:
Georg Brandl 2009-09-01 07:46:26 +00:00
parent 254c17c758
commit a88fd7603b
1 changed files with 3 additions and 3 deletions

View File

@ -331,9 +331,9 @@ data attribute, its class is searched. If the name denotes a valid class
attribute that is a function object, a method object is created by packing attribute that is a function object, a method object is created by packing
(pointers to) the instance object and the function object just found together in (pointers to) the instance object and the function object just found together in
an abstract object: this is the method object. When the method object is called an abstract object: this is the method object. When the method object is called
with an argument list, it is unpacked again, a new argument list is constructed with an argument list, a new argument list is constructed from the instance
from the instance object and the original argument list, and the function object object and the argument list, and the function object is called with this new
is called with this new argument list. argument list.
.. _tut-remarks: .. _tut-remarks: