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
3824cd8f
Kaydet (Commit)
3824cd8f
authored
Mar 01, 2017
tarafından
INADA Naoki
Kaydeden (comit)
GitHub
Mar 01, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-29684: Fix regression of PyEval_CallObjectWithKeywords (GH-87)
It should raise TypeError when kwargs is not a dict.
üst
f5184745
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
6 deletions
+11
-6
NEWS
Misc/NEWS
+4
-0
call.c
Objects/call.c
+7
-6
No files found.
Misc/NEWS
Dosyayı görüntüle @
3824cd8f
...
...
@@ -10,6 +10,10 @@ What's New in Python 3.7.0 alpha 1?
Core and Builtins
-----------------
- bpo-29684: Fix minor regression of PyEval_CallObjectWithKeywords.
It should raise TypeError when kwargs is not a dict. But it might
cause segv when args=NULL and kwargs is not a dict.
- bpo-28598: Support __rmod__ for subclasses of str being called before
str.__mod__. Patch by Martijn Pieters.
...
...
Objects/call.c
Dosyayı görüntüle @
3824cd8f
...
...
@@ -766,11 +766,7 @@ PyEval_CallObjectWithKeywords(PyObject *callable,
assert
(
!
PyErr_Occurred
());
#endif
if
(
args
==
NULL
)
{
return
_PyObject_FastCallDict
(
callable
,
NULL
,
0
,
kwargs
);
}
if
(
!
PyTuple_Check
(
args
))
{
if
(
args
!=
NULL
&&
!
PyTuple_Check
(
args
))
{
PyErr_SetString
(
PyExc_TypeError
,
"argument list must be a tuple"
);
return
NULL
;
...
...
@@ -782,7 +778,12 @@ PyEval_CallObjectWithKeywords(PyObject *callable,
return
NULL
;
}
return
PyObject_Call
(
callable
,
args
,
kwargs
);
if
(
args
==
NULL
)
{
return
_PyObject_FastCallDict
(
callable
,
NULL
,
0
,
kwargs
);
}
else
{
return
PyObject_Call
(
callable
,
args
,
kwargs
);
}
}
...
...
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