]> granicus.if.org Git - python/commitdiff
#6808: clarification.
authorGeorg Brandl <georg@python.org>
Tue, 1 Sep 2009 07:46:26 +0000 (07:46 +0000)
committerGeorg Brandl <georg@python.org>
Tue, 1 Sep 2009 07:46:26 +0000 (07:46 +0000)
Doc/tutorial/classes.rst

index 891f6358e616a5c89acb04867b4a7b4b04aab034..1488329431ae01a06ba0791f27dc5624030fed2f 100644 (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
 (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
-with an argument list, it is unpacked again, a new argument list is constructed
-from the instance object and the original argument list, and the function object
-is called with this new argument list.
+with an argument list, a new argument list is constructed from the instance
+object and the argument list, and the function object is called with this new
+argument list.
 
 
 .. _tut-remarks: