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
cca32995
Kaydet (Commit)
cca32995
authored
Ock 31, 2016
tarafından
Martin Panter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #4806: Merge * unpacking fix from 3.5
üst
03178a5f
b5944220
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
58 additions
and
13 deletions
+58
-13
test_extcall.py
Lib/test/test_extcall.py
+44
-5
NEWS
Misc/NEWS
+4
-0
ceval.c
Python/ceval.c
+10
-8
No files found.
Lib/test/test_extcall.py
Dosyayı görüntüle @
cca32995
...
...
@@ -114,7 +114,7 @@ Verify clearing of SF bug #733667
>>> g(*Nothing())
Traceback (most recent call last):
...
TypeError: g() argument after * must be a
sequenc
e, not Nothing
TypeError: g() argument after * must be a
n iterabl
e, not Nothing
>>> class Nothing:
... def __len__(self): return 5
...
...
@@ -123,7 +123,7 @@ Verify clearing of SF bug #733667
>>> g(*Nothing())
Traceback (most recent call last):
...
TypeError: g() argument after * must be a
sequenc
e, not Nothing
TypeError: g() argument after * must be a
n iterabl
e, not Nothing
>>> class Nothing():
... def __len__(self): return 5
...
...
@@ -149,6 +149,45 @@ Verify clearing of SF bug #733667
>>> g(*Nothing())
0 (1, 2, 3) {}
Check for issue #4806: Does a TypeError in a generator get propagated with the
right error message? (Also check with other iterables.)
>>> def broken(): raise TypeError("myerror")
...
>>> g(*(broken() for i in range(1)))
Traceback (most recent call last):
...
TypeError: myerror
>>> class BrokenIterable1:
... def __iter__(self):
... raise TypeError('myerror')
...
>>> g(*BrokenIterable1())
Traceback (most recent call last):
...
TypeError: myerror
>>> class BrokenIterable2:
... def __iter__(self):
... yield 0
... raise TypeError('myerror')
...
>>> g(*BrokenIterable2())
Traceback (most recent call last):
...
TypeError: myerror
>>> class BrokenSequence:
... def __getitem__(self, idx):
... raise TypeError('myerror')
...
>>> g(*BrokenSequence())
Traceback (most recent call last):
...
TypeError: myerror
Make sure that the function doesn't stomp the dictionary
>>> d = {'a': 1, 'b': 2, 'c': 3}
...
...
@@ -188,17 +227,17 @@ What about willful misconduct?
>>> h(*h)
Traceback (most recent call last):
...
TypeError: h() argument after * must be a
sequenc
e, not function
TypeError: h() argument after * must be a
n iterabl
e, not function
>>> dir(*h)
Traceback (most recent call last):
...
TypeError: dir() argument after * must be a
sequenc
e, not function
TypeError: dir() argument after * must be a
n iterabl
e, not function
>>> None(*h)
Traceback (most recent call last):
...
TypeError: NoneType object argument after * must be a
sequenc
e,
\
TypeError: NoneType object argument after * must be a
n iterabl
e,
\
not function
>>> h(**h)
...
...
Misc/NEWS
Dosyayı görüntüle @
cca32995
...
...
@@ -10,6 +10,10 @@ Release date: tba
Core and Builtins
-----------------
- Issue #4806: Avoid masking the original TypeError exception when using star
(*) unpacking in function calls. Based on patch by Hagen Fürstenau and
Daniel Urban.
- Issue #26146: Add a new kind of AST node: ``ast.Constant``. It can be used
by external AST optimizers, but the compiler does not emit directly such
node.
...
...
Python/ceval.c
Dosyayı görüntüle @
cca32995
...
...
@@ -4999,16 +4999,18 @@ ext_do_call(PyObject *func, PyObject ***pp_stack, int flags, int na, int nk)
stararg
=
EXT_POP
(
*
pp_stack
);
if
(
!
PyTuple_Check
(
stararg
))
{
PyObject
*
t
=
NULL
;
if
(
Py_TYPE
(
stararg
)
->
tp_iter
==
NULL
&&
!
PySequence_Check
(
stararg
))
{
PyErr_Format
(
PyExc_TypeError
,
"%.200s%.200s argument after * "
"must be an iterable, not %.200s"
,
PyEval_GetFuncName
(
func
),
PyEval_GetFuncDesc
(
func
),
stararg
->
ob_type
->
tp_name
);
goto
ext_call_fail
;
}
t
=
PySequence_Tuple
(
stararg
);
if
(
t
==
NULL
)
{
if
(
PyErr_ExceptionMatches
(
PyExc_TypeError
))
{
PyErr_Format
(
PyExc_TypeError
,
"%.200s%.200s argument after * "
"must be a sequence, not %.200s"
,
PyEval_GetFuncName
(
func
),
PyEval_GetFuncDesc
(
func
),
stararg
->
ob_type
->
tp_name
);
}
goto
ext_call_fail
;
}
Py_DECREF
(
stararg
);
...
...
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