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

Petri Lehtinen report at bugs.python.org
Sat Jul 23 20:22:40 CEST 2011


New submission from Petri Lehtinen <petri at digip.org>:

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 at python
components: Documentation, Interpreter Core
keywords: easy
messages: 141001
nosy: docs at python, petri.lehtinen
priority: normal
severity: normal
stage: needs patch
status: open
title: Errors in docstrings of find and rfind methods of bytes and bytestring
versions: Python 2.7, Python 3.2, Python 3.3

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue12621>
_______________________________________


More information about the docs mailing list