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
ceccc3c0
Kaydet (Commit)
ceccc3c0
authored
Nis 11, 2001
tarafından
Jeremy Hylton
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Test cases for examples of ext call error handling.
Fix to SF bug #414743 based on Michael Hudson's patch #414750.
üst
512a2377
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
0 deletions
+40
-0
test_extcall
Lib/test/output/test_extcall
+5
-0
test_extcall.py
Lib/test/test_extcall.py
+35
-0
No files found.
Lib/test/output/test_extcall
Dosyayı görüntüle @
ceccc3c0
...
...
@@ -25,7 +25,12 @@ g() got multiple values for keyword argument 'b'
f() keywords must be strings
h() got an unexpected keyword argument 'e'
h() argument after * must be a sequence
dir() argument after * must be a sequence
None object argument after * must be a sequence
h() argument after ** must be a dictionary
dir() argument after ** must be a dictionary
None object argument after ** must be a dictionary
dir() got multiple values for keyword argument 'b'
3 512 1
3
3
...
...
Lib/test/test_extcall.py
Dosyayı görüntüle @
ceccc3c0
...
...
@@ -137,6 +137,20 @@ except TypeError, err:
else
:
print
"should raise TypeError: * argument must be a tuple"
try
:
dir
(
*
h
)
except
TypeError
,
err
:
print
err
else
:
print
"should raise TypeError: * argument must be a tuple"
try
:
None
(
*
h
)
except
TypeError
,
err
:
print
err
else
:
print
"should raise TypeError: * argument must be a tuple"
try
:
h
(
**
h
)
except
TypeError
,
err
:
...
...
@@ -144,6 +158,27 @@ except TypeError, err:
else
:
print
"should raise TypeError: ** argument must be a dictionary"
try
:
dir
(
**
h
)
except
TypeError
,
err
:
print
err
else
:
print
"should raise TypeError: ** argument must be a dictionary"
try
:
None
(
**
h
)
except
TypeError
,
err
:
print
err
else
:
print
"should raise TypeError: ** argument must be a dictionary"
try
:
dir
(
b
=
1
,
**
{
'b'
:
1
})
except
TypeError
,
err
:
print
err
else
:
print
"should raise TypeError: dir() got multiple values for keyword argument 'b'"
def
f2
(
*
a
,
**
b
):
return
a
,
b
...
...
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