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

noreply@sourceforge.net noreply@sourceforge.net
Sat, 11 May 2002 20:22:01 -0700


Patches item #552468, was opened at 2002-05-05 03: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: Closed
Resolution: Accepted
Priority: 6
Submitted By: Raymond Hettinger (rhettinger)
Assigned to: Raymond Hettinger (rhettinger)
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.

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

>Comment By: Raymond Hettinger (rhettinger)
Date: 2002-05-11 22:22

Message:
Logged In: YES 
user_id=80475

Checked in as /Doc/ref/ref3.tex 1.88.
Patch and bug closed.

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

Comment By: Fred L. Drake, Jr. (fdrake)
Date: 2002-05-09 12:49

Message:
Logged In: YES 
user_id=3066

Looks good -- check it in & close the patch & related bug
report.

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

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