[Patches] [ python-Patches-552468 ] Correct ref manual error for list type

noreply@sourceforge.net noreply@sourceforge.net
Sun, 05 May 2002 01:39:24 -0700


Patches item #552468, was opened at 2002-05-05 08:39
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=305470&aid=552468&group_id=5470

Category: Documentation
Group: Python 2.3
Status: Open
Resolution: None
Priority: 5
Submitted By: Raymond Hettinger (rhettinger)
Assigned to: Fred L. Drake, Jr. (fdrake)
Summary: Correct ref manual error for list type

Initial Comment:
Closes SF bug www.python.org/sf/548874 

Docs had old information that the list object did not 
support a .__getitem__ method.  With the new style 
classes, they do:

>>> x = list('abc')
>>> x.__getitem__(1)
'b'

Deleted erroneous sentence.

----------------------------------------------------------------------

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=305470&aid=552468&group_id=5470