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
1859fe80
Kaydet (Commit)
1859fe80
authored
Nis 22, 2013
tarafından
Eli Bendersky
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Simplify the code of get_attrib_from_keywords somewhat.
üst
ed8b86d3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
9 deletions
+5
-9
_elementtree.c
Modules/_elementtree.c
+5
-9
No files found.
Modules/_elementtree.c
Dosyayı görüntüle @
1859fe80
...
...
@@ -278,29 +278,25 @@ element_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
static
PyObject
*
get_attrib_from_keywords
(
PyObject
*
kwds
)
{
PyObject
*
attrib_str
=
PyUnicode_FromString
(
"attrib"
)
;
PyObject
*
attrib
=
PyDict_GetItem
(
kwds
,
attrib_str
);
const
char
*
ATTRIB_KEY
=
"attrib"
;
PyObject
*
attrib
=
PyDict_GetItem
String
(
kwds
,
ATTRIB_KEY
);
if
(
attrib
)
{
/* If attrib was found in kwds, copy its value and remove it from
* kwds
*/
if
(
!
PyDict_Check
(
attrib
))
{
Py_DECREF
(
attrib_str
);
PyErr_Format
(
PyExc_TypeError
,
"attrib must be dict, not %.100s"
,
Py_TYPE
(
attrib
)
->
tp_name
);
return
NULL
;
}
attrib
=
PyDict_Copy
(
attrib
);
PyDict_DelItem
(
kwds
,
attrib_str
);
PyDict_DelItem
String
(
kwds
,
ATTRIB_KEY
);
}
else
{
attrib
=
PyDict_New
();
}
Py_DECREF
(
attrib_str
);
if
(
attrib
)
PyDict_Update
(
attrib
,
kwds
);
assert
(
attrib
);
PyDict_Update
(
attrib
,
kwds
);
return
attrib
;
}
...
...
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