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
83687c98
Kaydet (Commit)
83687c98
authored
Nis 13, 2006
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Change more occurrences of maxsplit to Py_ssize_t.
üst
9c83076b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
stringobject.c
Objects/stringobject.c
+4
-4
No files found.
Objects/stringobject.c
Dosyayı görüntüle @
83687c98
...
...
@@ -1332,7 +1332,7 @@ static const char *stripformat[] = {"|O:lstrip", "|O:rstrip", "|O:strip"};
Py_DECREF(str);
static
PyObject
*
split_whitespace
(
const
char
*
s
,
Py_ssize_t
len
,
in
t
maxsplit
)
split_whitespace
(
const
char
*
s
,
Py_ssize_t
len
,
Py_ssize_
t
maxsplit
)
{
Py_ssize_t
i
,
j
;
PyObject
*
str
;
...
...
@@ -1366,7 +1366,7 @@ split_whitespace(const char *s, Py_ssize_t len, int maxsplit)
}
static
PyObject
*
split_char
(
const
char
*
s
,
Py_ssize_t
len
,
char
ch
,
in
t
maxcount
)
split_char
(
const
char
*
s
,
Py_ssize_t
len
,
char
ch
,
Py_ssize_
t
maxcount
)
{
register
Py_ssize_t
i
,
j
;
PyObject
*
str
;
...
...
@@ -1472,7 +1472,7 @@ string_split(PyStringObject *self, PyObject *args)
}
static
PyObject
*
rsplit_whitespace
(
const
char
*
s
,
Py_ssize_t
len
,
in
t
maxsplit
)
rsplit_whitespace
(
const
char
*
s
,
Py_ssize_t
len
,
Py_ssize_
t
maxsplit
)
{
Py_ssize_t
i
,
j
;
PyObject
*
str
;
...
...
@@ -1506,7 +1506,7 @@ rsplit_whitespace(const char *s, Py_ssize_t len, int maxsplit)
}
static
PyObject
*
rsplit_char
(
const
char
*
s
,
Py_ssize_t
len
,
char
ch
,
in
t
maxcount
)
rsplit_char
(
const
char
*
s
,
Py_ssize_t
len
,
char
ch
,
Py_ssize_
t
maxcount
)
{
register
Py_ssize_t
i
,
j
;
PyObject
*
str
;
...
...
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