This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Correct ref manual error for list type
Type: Stage:
Components: Documentation Versions: Python 2.3
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: rhettinger Nosy List: fdrake, rhettinger
Priority: high Keywords: patch

Created on 2002-05-05 08:39 by rhettinger, last changed 2022-04-10 16:05 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
ref.diff rhettinger, 2002-05-05 08:39 Context diff Doc/ref/ref3.tex
Messages (3)
msg39884 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2002-05-05 08:39
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.
msg39885 - (view) Author: Fred Drake (fdrake) (Python committer) Date: 2002-05-09 17:49
Logged In: YES 
user_id=3066

Looks good -- check it in & close the patch & related bug
report.
msg39886 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2002-05-12 03:22
Logged In: YES 
user_id=80475

Checked in as /Doc/ref/ref3.tex 1.88.
Patch and bug closed.
History
Date User Action Args
2022-04-10 16:05:17adminsetgithub: 36557
2002-05-05 08:39:24rhettingercreate