From ac1ceef3ac68a5c8615d92235b0d514ef5aa512d Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Mon, 13 May 2002 07:55:24 +0000 Subject: [PATCH] Backport ver 1.88 correction noting that lists now support .__getitem__(). Closes SF bug 548874 and patch 552468. --- Doc/ref/ref3.tex | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Doc/ref/ref3.tex b/Doc/ref/ref3.tex index 8da36919baba..2f995d73a877 100644 --- a/Doc/ref/ref3.tex +++ b/Doc/ref/ref3.tex @@ -882,10 +882,8 @@ syntax (such as arithmetic operations or subscripting and slicing) by defining methods with special names. For instance, if a class defines a method named \method{__getitem__()}, and \code{x} is an instance of this class, then \code{x[i]} is equivalent to -\code{x.__getitem__(i)}. (The reverse is not true --- if \code{x} is -a list object, \code{x.__getitem__(i)} is not equivalent to -\code{x[i]}.) Except where mentioned, attempts to execute an -operation raise an exception when no appropriate method is defined. +\code{x.__getitem__(i)}. Except where mentioned, attempts to execute +an operation raise an exception when no appropriate method is defined. \withsubitem{(mapping object method)}{\ttindex{__getitem__()}} When implementing a class that emulates any built-in type, it is -- 2.47.3