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
6543b45b
Kaydet (Commit)
6543b45b
authored
Eyl 16, 2004
tarafından
Skip Montanaro
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Initialize sep and seplen to suppress warning from gcc.
üst
528ca53b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
unicodeobject.c
Objects/unicodeobject.c
+3
-3
No files found.
Objects/unicodeobject.c
Dosyayı görüntüle @
6543b45b
...
@@ -4013,15 +4013,15 @@ PyObject *
...
@@ -4013,15 +4013,15 @@ PyObject *
PyUnicode_Join
(
PyObject
*
separator
,
PyObject
*
seq
)
PyUnicode_Join
(
PyObject
*
separator
,
PyObject
*
seq
)
{
{
PyObject
*
internal_separator
=
NULL
;
PyObject
*
internal_separator
=
NULL
;
const
Py_UNICODE
*
sep
;
const
Py_UNICODE
blank
=
' '
;
size_t
seplen
;
const
Py_UNICODE
*
sep
=
&
blank
;
size_t
seplen
=
1
;
PyUnicodeObject
*
res
=
NULL
;
/* the result */
PyUnicodeObject
*
res
=
NULL
;
/* the result */
size_t
res_alloc
=
100
;
/* # allocated bytes for string in res */
size_t
res_alloc
=
100
;
/* # allocated bytes for string in res */
size_t
res_used
;
/* # used bytes */
size_t
res_used
;
/* # used bytes */
Py_UNICODE
*
res_p
;
/* pointer to free byte in res's string area */
Py_UNICODE
*
res_p
;
/* pointer to free byte in res's string area */
PyObject
*
fseq
;
/* PySequence_Fast(seq) */
PyObject
*
fseq
;
/* PySequence_Fast(seq) */
int
seqlen
;
/* len(fseq) -- number of items in sequence */
int
seqlen
;
/* len(fseq) -- number of items in sequence */
const
Py_UNICODE
blank
=
' '
;
PyObject
*
item
;
PyObject
*
item
;
int
i
;
int
i
;
...
...
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