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
f5164f6e
Kaydet (Commit)
f5164f6e
authored
May 04, 2011
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#11982: remove now unused function.
üst
fb5d3e75
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
18 deletions
+0
-18
_json.c
Modules/_json.c
+0
-18
No files found.
Modules/_json.c
Dosyayı görüntüle @
f5164f6e
...
...
@@ -379,24 +379,6 @@ join_list_unicode(PyObject *lst)
return
PyObject_CallFunctionObjArgs
(
joinfn
,
lst
,
NULL
);
}
static
PyObject
*
join_list_string
(
PyObject
*
lst
)
{
/* return ''.join(lst) */
static
PyObject
*
joinfn
=
NULL
;
if
(
joinfn
==
NULL
)
{
PyObject
*
ustr
=
PyString_FromStringAndSize
(
NULL
,
0
);
if
(
ustr
==
NULL
)
return
NULL
;
joinfn
=
PyObject_GetAttrString
(
ustr
,
"join"
);
Py_DECREF
(
ustr
);
if
(
joinfn
==
NULL
)
return
NULL
;
}
return
PyObject_CallFunctionObjArgs
(
joinfn
,
lst
,
NULL
);
}
static
PyObject
*
_build_rval_index_tuple
(
PyObject
*
rval
,
Py_ssize_t
idx
)
{
/* return (rval, idx) tuple, stealing reference to rval */
...
...
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