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
2106ef02
Kaydet (Commit)
2106ef02
authored
Haz 25, 2001
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Repair indentation in comment.
Add a temporary driver to help track down remaining leak(s).
üst
a2ca1ae3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
test_generators.py
Lib/test/test_generators.py
+9
-2
No files found.
Lib/test/test_generators.py
Dosyayı görüntüle @
2106ef02
...
...
@@ -15,7 +15,7 @@ Let's try a simple generator:
>>> g.next()
2
"Falling off the end" stops the generator:
"Falling off the end" stops the generator:
>>> g.next()
Traceback (most recent call last):
...
...
@@ -582,7 +582,14 @@ __test__ = {"tut": tutorial_tests,
# so this works as expected in both ways of running regrtest.
def
test_main
():
import
doctest
,
test_generators
doctest
.
testmod
(
test_generators
)
if
0
:
# Temporary block to help track down leaks. So far, the blame
# has fallen mostly on doctest.
for
i
in
range
(
1000
):
doctest
.
master
=
None
doctest
.
testmod
(
test_generators
)
else
:
doctest
.
testmod
(
test_generators
)
# This part isn't needed for regrtest, but for running the test directly.
if
__name__
==
"__main__"
:
...
...
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