]> granicus.if.org Git - python/commitdiff
Issue #12672: remove confusing part of sentence in documentation
authorEli Bendersky <eliben@gmail.com>
Fri, 19 Aug 2011 03:29:51 +0000 (06:29 +0300)
committerEli Bendersky <eliben@gmail.com>
Fri, 19 Aug 2011 03:29:51 +0000 (06:29 +0300)
Doc/extending/newtypes.rst

index 75836c7807809a33b3fc8737a63f5a725f90795c..2ba01bc53b32a43e5c537daef0586ac6f6032f13 100644 (file)
@@ -30,8 +30,7 @@ The Python runtime sees all Python objects as variables of type
 just contains the refcount and a pointer to the object's "type object".  This is
 where the action is; the type object determines which (C) functions get called
 when, for instance, an attribute gets looked up on an object or it is multiplied
-by another object.  These C functions are called "type methods" to distinguish
-them from things like ``[].append`` (which we call "object methods").
+by another object.  These C functions are called "type methods".
 
 So, if you want to define a new object type, you need to create a new type
 object.