[issue12621] Errors in docstrings of find and rfind methods of bytes and bytestring

2011-07-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset c3aebd01a033 by Senthil Kumaran in branch '3.2': Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject. http://hg.python.org/cpython/rev/c3aebd01a033 New changeset 842494d73f69 by Senthil Kumaran in branc

Re: [issue12621] Errors in docstrings of find and rfind methods of bytes and bytestring

2011-07-24 Thread Senthil Kumaran
Okay, got it. Thanks. I was a subtle one within the description. I missed it in the first place. ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

[issue12621] Errors in docstrings of find and rfind methods of bytes and bytestring

2011-07-24 Thread Petri Lehtinen
Changes by Petri Lehtinen : Added file: http://bugs.python.org/file22742/2.7.txt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue12621] Errors in docstrings of find and rfind methods of bytes and bytestring

2011-07-24 Thread Petri Lehtinen
Changes by Petri Lehtinen : Added file: http://bugs.python.org/file22741/3.2.txt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue12621] Errors in docstrings of find and rfind methods of bytes and bytestring

2011-07-24 Thread Petri Lehtinen
Petri Lehtinen added the comment: 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; d

[issue12621] Errors in docstrings of find and rfind methods of bytes and bytestring

2011-07-23 Thread Senthil Kumaran
Senthil Kumaran added the comment: These are not on head revision in cpython and 3.2. Where did you find this bug? Please provide further details along with snippet and/or file. -- nosy: +orsenthil stage: needs patch -> ___ Python tracker

[issue12621] Errors in docstrings of find and rfind methods of bytes and bytestring

2011-07-23 Thread Petri Lehtinen
New submission from Petri Lehtinen : bytes.{find,rfind} reads s[start:end]; should be B[start:end] bytearray.{find,rfind} reads s[start,end]; should be B[start:end] {str,unicode}.{find,rfind} reads s{start:end]; should be S[start:end] -- assignee: docs@python components: Documentation,