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 petri.lehtinen
Recipients docs@python, orsenthil, petri.lehtinen
Date 2011-07-24.10:53:49
SpamBayes Score 0.011677152
Marked as misclassified No
Message-id <1311504830.94.0.820201265539.issue12621@psf.upfronthosting.co.za>
In-reply-to
Content
Attached outputs of the following commands in the corresponding head revisions (from yesterday, as hg.python.org seems to be down today):

3.3:

for x in {bytes,bytearray}.{find,rfind} str.{find,rfind}; do echo === $x ===; ./python -c "help($x)" | cat; echo; done > 3.3.txt

3.2:

for x in {bytes,bytearray}.{find,rfind} str.{find,rfind}; do echo === $x ===; ./python -c "help($x)" | cat; echo; done > 3.2.txt

2.7:

for x in bytearray.{find,rfind} unicode.{find,rfind}; do echo === $x ===; ./python -c "help($x)" | cat; echo; done > 2.7.txt


In all files, I see s[start:end] or s[start,end] where there should read B[start:end] or S[start:end].
History
Date User Action Args
2011-07-24 10:53:51petri.lehtinensetrecipients: + petri.lehtinen, orsenthil, docs@python
2011-07-24 10:53:50petri.lehtinensetmessageid: <1311504830.94.0.820201265539.issue12621@psf.upfronthosting.co.za>
2011-07-24 10:53:50petri.lehtinenlinkissue12621 messages
2011-07-24 10:53:50petri.lehtinencreate