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
dfb77dbc
Kaydet (Commit)
dfb77dbc
authored
May 11, 2008
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#2809: elaborate str.split docstring a bit.
üst
53905d8f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
stringobject.c
Objects/stringobject.c
+2
-1
unicodeobject.c
Objects/unicodeobject.c
+3
-2
No files found.
Objects/stringobject.c
Dosyayı görüntüle @
dfb77dbc
...
...
@@ -1498,7 +1498,8 @@ PyDoc_STRVAR(split__doc__,
Return a list of the words in the string S, using sep as the
\n
\
delimiter string. If maxsplit is given, at most maxsplit
\n
\
splits are done. If sep is not specified or is None, any
\n
\
whitespace string is a separator."
);
whitespace string is a separator and leading and trailing
\n
\
whitespace is stripped before splitting."
);
static
PyObject
*
string_split
(
PyStringObject
*
self
,
PyObject
*
args
)
...
...
Objects/unicodeobject.c
Dosyayı görüntüle @
dfb77dbc
...
...
@@ -7494,8 +7494,9 @@ PyDoc_STRVAR(split__doc__,
\n
\
Return a list of the words in S, using sep as the
\n
\
delimiter string. If maxsplit is given, at most maxsplit
\n
\
splits are done. If sep is not specified or is None,
\n
\
any whitespace string is a separator."
);
splits are done. If sep is not specified or is None, any
\n
\
whitespace string is a separator and leading and trailing
\n
\
whitespace is stripped before splitting."
);
static
PyObject
*
unicode_split
(
PyUnicodeObject
*
self
,
PyObject
*
args
)
...
...
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