Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
53516a82
Kaydet (Commit)
53516a82
authored
Tem 27, 2011
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject.
üst
d98646e4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
bytearrayobject.c
Objects/bytearrayobject.c
+2
-2
bytesobject.c
Objects/bytesobject.c
+2
-2
unicodeobject.c
Objects/unicodeobject.c
+2
-2
No files found.
Objects/bytearrayobject.c
Dosyayı görüntüle @
53516a82
...
...
@@ -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."
);
...
...
Objects/bytesobject.c
Dosyayı görüntüle @
53516a82
...
...
@@ -1273,7 +1273,7 @@ PyDoc_STRVAR(find__doc__,
"B.find(sub[, start[, end]]) -> int
\n
\
\n
\
Return the lowest index in B where substring 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."
);
...
...
@@ -1312,7 +1312,7 @@ PyDoc_STRVAR(rfind__doc__,
"B.rfind(sub[, start[, end]]) -> int
\n
\
\n
\
Return the highest index in B where substring 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."
);
...
...
Objects/unicodeobject.c
Dosyayı görüntüle @
53516a82
...
...
@@ -7587,7 +7587,7 @@ PyDoc_STRVAR(find__doc__,
"S.find(sub[, start[, end]]) -> int
\n
\
\n
\
Return the lowest index in S where substring sub is found,
\n
\
such that sub is contained within
s
[start:end]. Optional
\n
\
such that sub is contained within
S
[start:end]. Optional
\n
\
arguments start and end are interpreted as in slice notation.
\n
\
\n
\
Return -1 on failure."
);
...
...
@@ -8513,7 +8513,7 @@ PyDoc_STRVAR(rfind__doc__,
"S.rfind(sub[, start[, end]]) -> int
\n
\
\n
\
Return the highest index in S where substring sub is found,
\n
\
such that sub is contained within
s
[start:end]. Optional
\n
\
such that sub is contained within
S
[start:end]. Optional
\n
\
arguments start and end are interpreted as in slice notation.
\n
\
\n
\
Return -1 on failure."
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment