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
8036c836
Kaydet (Commit)
8036c836
authored
Şub 21, 2004
tarafından
Samuele Pedroni
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
adding passing test. testing for g(*Nothing()) where Nothing is a user-defined iterator.
üst
0bc9c919
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
0 deletions
+26
-0
test_extcall
Lib/test/output/test_extcall
+1
-0
test_extcall.py
Lib/test/test_extcall.py
+25
-0
No files found.
Lib/test/output/test_extcall
Dosyayı görüntüle @
8036c836
...
...
@@ -17,6 +17,7 @@ TypeError: g() takes at least 1 argument (0 given)
1 (2, 3) {}
1 (2, 3, 4, 5) {}
0 (1, 2) {}
0 (1, 2, 3) {}
1 () {'a': 1, 'b': 2, 'c': 3, 'd': 4}
{'a': 1, 'b': 2, 'c': 3}
{'a': 1, 'b': 2, 'c': 3}
...
...
Lib/test/test_extcall.py
Dosyayı görüntüle @
8036c836
...
...
@@ -86,6 +86,31 @@ class Nothing:
raise
IndexError
,
i
g
(
*
Nothing
())
class
Nothing
:
def
__init__
(
self
):
self
.
c
=
0
def
__iter__
(
self
):
return
self
try
:
g
(
*
Nothing
())
except
TypeError
,
attr
:
pass
else
:
print
"should raise TypeError"
class
Nothing
:
def
__init__
(
self
):
self
.
c
=
0
def
__iter__
(
self
):
return
self
def
next
(
self
):
if
self
.
c
==
4
:
raise
StopIteration
c
=
self
.
c
self
.
c
+=
1
return
c
g
(
*
Nothing
())
# make sure the function call doesn't stomp on the dictionary?
d
=
{
'a'
:
1
,
'b'
:
2
,
'c'
:
3
}
d2
=
d
.
copy
()
...
...
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