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
009e79bf
Kaydet (Commit)
009e79bf
authored
May 03, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
unified join(fields), split(fields)
üst
953dc1a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
12 deletions
+20
-12
stropmodule.c
Modules/stropmodule.c
+20
-12
No files found.
Modules/stropmodule.c
Dosyayı görüntüle @
009e79bf
...
...
@@ -35,16 +35,13 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
static
object
*
strop_split
(
self
,
args
)
object
*
self
;
/* Not used */
object
*
args
;
{
int
len
,
i
,
j
,
err
;
split_whitespace
(
s
,
len
)
char
*
s
;
int
len
;
{
int
i
,
j
,
err
;
object
*
list
,
*
item
;
if
(
!
getargs
(
args
,
"s#"
,
&
s
,
&
len
))
return
NULL
;
list
=
newlistobject
(
0
);
if
(
list
==
NULL
)
return
NULL
;
...
...
@@ -86,8 +83,12 @@ strop_splitfields(self, args)
char
*
s
,
*
sub
;
object
*
list
,
*
item
;
if
(
!
getargs
(
args
,
"(s#s#)"
,
&
s
,
&
len
,
&
sub
,
&
n
))
sub
=
NULL
;
n
=
0
;
if
(
!
newgetargs
(
args
,
"s#|z#"
,
&
s
,
&
len
,
&
sub
,
&
n
))
return
NULL
;
if
(
sub
==
NULL
)
return
split_whitespace
(
s
,
len
);
if
(
n
==
0
)
{
err_setstr
(
ValueError
,
"empty separator"
);
return
NULL
;
...
...
@@ -138,8 +139,14 @@ strop_joinfields(self, args)
char
*
sep
,
*
p
;
int
seplen
,
seqlen
,
reslen
,
itemlen
,
i
;
if
(
!
getargs
(
args
,
"(Os#)"
,
&
seq
,
&
sep
,
&
seplen
))
sep
=
NULL
;
seplen
=
0
;
if
(
!
newgetargs
(
args
,
"O|s#"
,
&
seq
,
&
sep
,
&
seplen
))
return
NULL
;
if
(
sep
==
NULL
)
{
sep
=
" "
;
seplen
=
1
;
}
if
(
is_listobject
(
seq
))
{
getitem
=
getlistitem
;
seqlen
=
getlistsize
(
seq
);
...
...
@@ -503,11 +510,12 @@ static struct methodlist strop_methods[] = {
{
"atoi"
,
strop_atoi
},
{
"atol"
,
strop_atol
},
{
"find"
,
strop_find
},
{
"joinfields"
,
strop_joinfields
},
{
"join"
,
strop_joinfields
,
1
},
{
"joinfields"
,
strop_joinfields
,
1
},
{
"lower"
,
strop_lower
},
{
"rfind"
,
strop_rfind
},
{
"split"
,
strop_split
},
{
"splitfields"
,
strop_splitfields
},
{
"split"
,
strop_split
fields
,
1
},
{
"splitfields"
,
strop_splitfields
,
1
},
{
"strip"
,
strop_strip
},
{
"swapcase"
,
strop_swapcase
},
{
"upper"
,
strop_upper
},
...
...
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