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.

Author jatin085
Recipients georg.brandl, jatin085
Date 2010-04-12.09:11:42
SpamBayes Score 0.012817595
Marked as misclassified No
Message-id <1271063505.25.0.821351537014.issue8377@psf.upfronthosting.co.za>
In-reply-to
Content
Open link: http://docs.python.org/library/stdtypes.html

The statement:

If i or j is negative, the index is relative to the end of the string: len(s) + i or len(s) + j is substituted.

is incorrect, should be:

If i or j is negative, the index is relative to the end of the string: len(s) - i or len(s) - j is substituted.
History
Date User Action Args
2010-04-12 09:11:45jatin085setrecipients: + jatin085, georg.brandl
2010-04-12 09:11:45jatin085setmessageid: <1271063505.25.0.821351537014.issue8377@psf.upfronthosting.co.za>
2010-04-12 09:11:43jatin085linkissue8377 messages
2010-04-12 09:11:43jatin085create