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
dae5db28
Kaydet (Commit)
dae5db28
authored
Haz 19, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
use closures
üst
5fa09e3e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
test_generators.py
Lib/test/test_generators.py
+3
-3
No files found.
Lib/test/test_generators.py
Dosyayı görüntüle @
dae5db28
...
...
@@ -964,7 +964,7 @@ def simple_conjoin(gs):
values
=
[
None
]
*
len
(
gs
)
def
gen
(
i
,
values
=
values
):
def
gen
(
i
):
if
i
>=
len
(
gs
):
yield
values
else
:
...
...
@@ -989,7 +989,7 @@ def conjoin(gs):
# Do one loop nest at time recursively, until the # of loop nests
# remaining is divisible by 3.
def
gen
(
i
,
values
=
values
):
def
gen
(
i
):
if
i
>=
n
:
yield
values
...
...
@@ -1007,7 +1007,7 @@ def conjoin(gs):
# remain. Don't call directly: this is an internal optimization for
# gen's use.
def
_gen3
(
i
,
values
=
values
):
def
_gen3
(
i
):
assert
i
<
n
and
(
n
-
i
)
%
3
==
0
ip1
,
ip2
,
ip3
=
i
+
1
,
i
+
2
,
i
+
3
g
,
g1
,
g2
=
gs
[
i
:
ip3
]
...
...
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