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
5665301b
Kaydet (Commit)
5665301b
authored
Eki 07, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #28257: Improved error message when pass a non-mapping as a var-keyword
argument.
üst
de0574bd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
4 deletions
+27
-4
test_extcall.py
Lib/test/test_extcall.py
+10
-0
ceval.c
Python/ceval.c
+17
-4
No files found.
Lib/test/test_extcall.py
Dosyayı görüntüle @
5665301b
...
...
@@ -269,6 +269,16 @@ not function
...
TypeError: h() argument after ** must be a mapping, not list
>>> h(**{'a': 1}, **h)
Traceback (most recent call last):
...
TypeError: h() argument after ** must be a mapping, not function
>>> h(**{'a': 1}, **[])
Traceback (most recent call last):
...
TypeError: h() argument after ** must be a mapping, not list
>>> dir(**h)
Traceback (most recent call last):
...
...
...
Python/ceval.c
Dosyayı görüntüle @
5665301b
...
...
@@ -2663,7 +2663,8 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
PyObject
*
intersection
=
_PyDictView_Intersect
(
sum
,
arg
);
if
(
intersection
==
NULL
)
{
if
(
PyErr_ExceptionMatches
(
PyExc_AttributeError
))
{
if
(
PyErr_ExceptionMatches
(
PyExc_AttributeError
)
||
!
PyMapping_Check
(
arg
))
{
int
function_location
=
(
oparg
>>
8
)
&
0xff
;
PyObject
*
func
=
(
PEEK
(
function_location
+
num_maps
));
...
...
@@ -2707,9 +2708,21 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
if
(
PyDict_Update
(
sum
,
arg
)
<
0
)
{
if
(
PyErr_ExceptionMatches
(
PyExc_AttributeError
))
{
PyErr_Format
(
PyExc_TypeError
,
"'%.200s' object is not a mapping"
,
arg
->
ob_type
->
tp_name
);
if
(
with_call
)
{
int
function_location
=
(
oparg
>>
8
)
&
0xff
;
PyObject
*
func
=
PEEK
(
function_location
+
num_maps
);
PyErr_Format
(
PyExc_TypeError
,
"%.200s%.200s argument after ** "
"must be a mapping, not %.200s"
,
PyEval_GetFuncName
(
func
),
PyEval_GetFuncDesc
(
func
),
arg
->
ob_type
->
tp_name
);
}
else
{
PyErr_Format
(
PyExc_TypeError
,
"'%.200s' object is not a mapping"
,
arg
->
ob_type
->
tp_name
);
}
}
Py_DECREF
(
sum
);
goto
error
;
...
...
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