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
9c5bcbf8
Kaydet (Commit)
9c5bcbf8
authored
Eki 14, 2016
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge
üst
174d79a2
7b16652f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
test_random.py
Lib/test/test_random.py
+14
-0
No files found.
Lib/test/test_random.py
Dosyayı görüntüle @
9c5bcbf8
...
...
@@ -205,6 +205,20 @@ class TestBasicOps:
]:
self
.
assertTrue
(
set
(
choices
(
data
,
cum_weights
=
weights
,
k
=
5
))
<=
set
(
data
))
# Test weight focused on a single element of the population
self
.
assertEqual
(
choices
(
'abcd'
,
[
1
,
0
,
0
,
0
]),
[
'a'
])
self
.
assertEqual
(
choices
(
'abcd'
,
[
0
,
1
,
0
,
0
]),
[
'b'
])
self
.
assertEqual
(
choices
(
'abcd'
,
[
0
,
0
,
1
,
0
]),
[
'c'
])
self
.
assertEqual
(
choices
(
'abcd'
,
[
0
,
0
,
0
,
1
]),
[
'd'
])
# Test consistency with random.choice() for empty population
with
self
.
assertRaises
(
IndexError
):
choices
([],
k
=
1
)
with
self
.
assertRaises
(
IndexError
):
choices
([],
weights
=
[],
k
=
1
)
with
self
.
assertRaises
(
IndexError
):
choices
([],
cum_weights
=
[],
k
=
5
)
def
test_gauss
(
self
):
# Ensure that the seed() method initializes all the hidden state. In
# particular, through 2.2.1 it failed to reset a piece of state used
...
...
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