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: Word should be changed on page 3.6.1
Type: Stage:
Components: Documentation Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, jikanter
Priority: normal Keywords:

Created on 2006-11-11 16:35 by jikanter, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg30503 - (view) Author: jikanter (jikanter) Date: 2006-11-11 16:35
The documentation currently reads as follows:

startswith(  	prefix[, start[, end]])
    Return True if string starts with the prefix,
otherwise return False. prefix can also be a tuple of
suffixes to look for. With optional start, test string
beginning at that position. With optional end, stop
comparing string at that position.

    Changed in version 2.5: Accept tuples as prefix. 


I believe that in the line that starts with "prefix can
also...", the word suffixes should be changed to the
word prefixes.

Thanks for all the good work.  Let me know if you have
any questions.
msg30504 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2006-11-11 18:29
Logged In: YES 
user_id=849994

Thanks for spotting this, fixed in rev. 52731, 52732 (2.5).
History
Date User Action Args
2022-04-11 14:56:21adminsetgithub: 44221
2006-11-11 16:35:13jikantercreate