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: FAQ 2.3 slices not used
Type: Stage:
Components: Documentation Versions: Python 2.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: loewis, wfolta
Priority: normal Keywords:

Created on 2004-02-02 02:53 by wfolta, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg19875 - (view) Author: Wayne Folta (wfolta) Date: 2004-02-02 02:53
Python Programming FAQ 4.3

The "iterate through a list in reverse" answer doesn't add 
the 2.3 slice answer:

for x in list[::-1]
       <do something with x>
msg19876 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2004-02-16 15:07
Logged In: YES 
user_id=21627

Thanks, fixed in programming.ht 1.16.
History
Date User Action Args
2022-04-11 14:56:02adminsetgithub: 39888
2004-02-02 02:53:53wfoltacreate