diff options
| author | Éric Araujo <merwok@netwok.org> | 2011-07-28 21:08:11 (GMT) |
|---|---|---|
| committer | Éric Araujo <merwok@netwok.org> | 2011-07-28 21:08:11 (GMT) |
| commit | cf534817adc49b2562d175fabd3e3992d25063fe (patch) | |
| tree | d2cb18e71d6b5cc25384146751b00c2172a327b6 /Objects/bytearrayobject.c | |
| parent | 9e1af03fbb2a9fc1472ac866add02c99b0c88b16 (diff) | |
| parent | fc662ddda2bfd43b10c0a4f8a814e36445f22515 (diff) | |
| download | cpython-cf534817adc49b2562d175fabd3e3992d25063fe.zip cpython-cf534817adc49b2562d175fabd3e3992d25063fe.tar.gz cpython-cf534817adc49b2562d175fabd3e3992d25063fe.tar.bz2 | |
Branch merge
Diffstat (limited to 'Objects/bytearrayobject.c')
| -rw-r--r-- | Objects/bytearrayobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c index 7a74104..0b45394 100644 --- a/Objects/bytearrayobject.c +++ b/Objects/bytearrayobject.c @@ -1102,7 +1102,7 @@ PyDoc_STRVAR(find__doc__, "B.find(sub[, start[, end]]) -> int\n\ \n\ Return the lowest index in B where subsection sub is found,\n\ -such that sub is contained within s[start,end]. Optional\n\ +such that sub is contained within B[start,end]. Optional\n\ arguments start and end are interpreted as in slice notation.\n\ \n\ Return -1 on failure."); @@ -1172,7 +1172,7 @@ PyDoc_STRVAR(rfind__doc__, "B.rfind(sub[, start[, end]]) -> int\n\ \n\ Return the highest index in B where subsection sub is found,\n\ -such that sub is contained within s[start,end]. Optional\n\ +such that sub is contained within B[start,end]. Optional\n\ arguments start and end are interpreted as in slice notation.\n\ \n\ Return -1 on failure."); |
