summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-09-01 07:46:26 (GMT)
committerGeorg Brandl <georg@python.org>2009-09-01 07:46:26 (GMT)
commita88fd7603b35e5a7324f0eb9b49bd32feda4b2a7 (patch)
treed19dc98c948df642ad0eef6c549a3f6ce5890320 /Doc
parent254c17c7580404f2b197336e2a6b8a10f5419343 (diff)
downloadcpython-a88fd7603b35e5a7324f0eb9b49bd32feda4b2a7.zip
cpython-a88fd7603b35e5a7324f0eb9b49bd32feda4b2a7.tar.gz
cpython-a88fd7603b35e5a7324f0eb9b49bd32feda4b2a7.tar.bz2
#6808: clarification.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/tutorial/classes.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst
index 891f635..1488329 100644
--- a/Doc/tutorial/classes.rst
+++ b/Doc/tutorial/classes.rst
@@ -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: