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
b1e169bf
Kaydet (Commit)
b1e169bf
authored
Eyl 12, 2016
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
ssue #27213: Reintroduce checks in _PyStack_AsDict()
üst
410b9887
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
9 deletions
+23
-9
abstract.h
Include/abstract.h
+3
-1
abstract.c
Objects/abstract.c
+19
-7
methodobject.c
Objects/methodobject.c
+1
-1
No files found.
Include/abstract.h
Dosyayı görüntüle @
b1e169bf
...
...
@@ -275,7 +275,9 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
PyAPI_FUNC
(
PyObject
*
)
_PyStack_AsDict
(
PyObject
**
values
,
PyObject
*
kwnames
);
Py_ssize_t
nkwargs
,
PyObject
*
kwnames
,
PyObject
*
func
);
/* Convert (args, nargs, kwargs) into a (stack, nargs, kwnames).
...
...
Objects/abstract.c
Dosyayı görüntüle @
b1e169bf
...
...
@@ -2367,9 +2367,9 @@ _PyObject_Call_Prepend(PyObject *func,
}
PyObject
*
_PyStack_AsDict
(
PyObject
**
values
,
PyObject
*
kwnames
)
_PyStack_AsDict
(
PyObject
**
values
,
Py_ssize_t
nkwargs
,
PyObject
*
kwnames
,
PyObject
*
func
)
{
Py_ssize_t
nkwargs
=
PyTuple_GET_SIZE
(
kwnames
);
PyObject
*
kwdict
;
Py_ssize_t
i
;
...
...
@@ -2378,12 +2378,24 @@ _PyStack_AsDict(PyObject **values, PyObject *kwnames)
return
NULL
;
}
for
(
i
=
0
;
i
<
nkwargs
;
i
++
)
{
for
(
i
=
0
;
i
<
nkwargs
;
i
++
)
{
int
err
;
PyObject
*
key
=
PyTuple_GET_ITEM
(
kwnames
,
i
);
PyObject
*
value
=
*
values
++
;
assert
(
PyUnicode_CheckExact
(
key
));
assert
(
PyDict_GetItem
(
kwdict
,
key
)
==
NULL
);
if
(
PyDict_SetItem
(
kwdict
,
key
,
value
))
{
if
(
PyDict_GetItem
(
kwdict
,
key
)
!=
NULL
)
{
PyErr_Format
(
PyExc_TypeError
,
"%.200s%s got multiple values "
"for keyword argument '%U'"
,
PyEval_GetFuncName
(
func
),
PyEval_GetFuncDesc
(
func
),
key
);
Py_DECREF
(
kwdict
);
return
NULL
;
}
err
=
PyDict_SetItem
(
kwdict
,
key
,
value
);
if
(
err
)
{
Py_DECREF
(
kwdict
);
return
NULL
;
}
...
...
@@ -2467,7 +2479,7 @@ _PyObject_FastCallKeywords(PyObject *func, PyObject **stack, Py_ssize_t nargs,
}
if
(
nkwargs
>
0
)
{
kwdict
=
_PyStack_AsDict
(
stack
+
nargs
,
kwnames
);
kwdict
=
_PyStack_AsDict
(
stack
+
nargs
,
nkwargs
,
kwnames
,
func
);
if
(
kwdict
==
NULL
)
{
return
NULL
;
}
...
...
Objects/methodobject.c
Dosyayı görüntüle @
b1e169bf
...
...
@@ -279,7 +279,7 @@ _PyCFunction_FastCallKeywords(PyObject *func, PyObject **stack,
nkwargs
=
(
kwnames
==
NULL
)
?
0
:
PyTuple_GET_SIZE
(
kwnames
);
if
(
nkwargs
>
0
)
{
kwdict
=
_PyStack_AsDict
(
stack
+
nargs
,
kwnames
);
kwdict
=
_PyStack_AsDict
(
stack
+
nargs
,
nkwargs
,
kwnames
,
func
);
if
(
kwdict
==
NULL
)
{
return
NULL
;
}
...
...
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