Hi

Finding the documentaion of list functions can be a bit trikky 
You have to remember that members of list are documented not in library documentation but in tutorial
It seems to me that more hypeer links are needed

There are at least four enties

1) http://docs.python.org/tutorial/introduction.html#lists
    A general introduction to list
    No references here
   
    * Should also contain a final line like e.g.: "more info on lists in More on Lists" i.e. hyperlink to (2)

2) http://docs.python.org/tutorial/datastructures.html#more-on-lists
    List all member functions

    * Should also contain a final line like e.g.: "list creation are documented in Built-in Functions - list" i.e. hyperlink to (4)

3) http://docs.python.org/library/functions.html#list
    How to create a list
    This section references two places: 
    a) it self (3)
    b) Sequence Types (4)

    * Maybe this should also contain a line in introduktion like e.g.: "lists members are documented in More on Lists" i.e. hyperlink to (2)

4) http://docs.python.org/library/stdtypes.html#typesseq
    This section reference one place related to list:
    a) in header list (1)

    * Should also contain a line like e.g.: "lists members are documented in More on Lists" i.e. hyperlink to (2)

Regards Jens