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
105b084b
Kaydet (Commit)
105b084b
authored
Şub 04, 2003
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add refcount test.
üst
fa05ce3c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
test_random.py
Lib/test/test_random.py
+12
-3
No files found.
Lib/test/test_random.py
Dosyayı görüntüle @
105b084b
...
...
@@ -74,7 +74,7 @@ class TestBasicOps(unittest.TestCase):
pop
=
range
(
n
)
trials
=
10000
# large num prevents false negatives without slowing normal case
def
factorial
(
n
):
return
n
==
0
and
1
or
n
*
factorial
(
n
-
1
)
return
reduce
(
int
.
__mul__
,
xrange
(
1
,
n
),
1
)
for
k
in
xrange
(
n
):
expected
=
factorial
(
n
)
/
factorial
(
n
-
k
)
perms
=
{}
...
...
@@ -271,7 +271,7 @@ class TestModule(unittest.TestCase):
# tests validity but not completeness of the __all__ list
self
.
failUnless
(
Set
(
random
.
__all__
)
<=
Set
(
dir
(
random
)))
def
test_main
():
def
test_main
(
verbose
=
None
):
suite
=
unittest
.
TestSuite
()
for
testclass
in
(
WichmannHill_TestBasicOps
,
MersenneTwister_TestBasicOps
,
...
...
@@ -280,5 +280,14 @@ def test_main():
suite
.
addTest
(
unittest
.
makeSuite
(
testclass
))
test_support
.
run_suite
(
suite
)
# verify reference counting
import
sys
if
verbose
and
hasattr
(
sys
,
"gettotalrefcount"
):
counts
=
[]
for
i
in
xrange
(
5
):
test_support
.
run_suite
(
suite
)
counts
.
append
(
sys
.
gettotalrefcount
()
-
i
)
print
counts
if
__name__
==
"__main__"
:
test_main
()
test_main
(
verbose
=
True
)
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