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
ddf71719
Unverified
Kaydet (Commit)
ddf71719
authored
Haz 27, 2018
tarafından
Raymond Hettinger
Kaydeden (comit)
GitHub
Haz 27, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-24567: Random subnormal.diff (#7954)
Handle subnormal weights for choices()
üst
3c8043d8
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletion
+13
-1
random.py
Lib/random.py
+3
-1
test_random.py
Lib/test/test_random.py
+8
-0
2018-06-27-00-31-30.bpo-24567.FuePyY.rst
...S.d/next/Library/2018-06-27-00-31-30.bpo-24567.FuePyY.rst
+2
-0
No files found.
Lib/random.py
Dosyayı görüntüle @
ddf71719
...
...
@@ -383,7 +383,9 @@ class Random(_random.Random):
raise
ValueError
(
'The number of weights does not match the population'
)
bisect
=
_bisect
.
bisect
total
=
cum_weights
[
-
1
]
return
[
population
[
bisect
(
cum_weights
,
random
()
*
total
)]
for
i
in
range
(
k
)]
hi
=
len
(
cum_weights
)
-
1
return
[
population
[
bisect
(
cum_weights
,
random
()
*
total
,
0
,
hi
)]
for
i
in
range
(
k
)]
## -------------------- real-valued distributions -------------------
...
...
Lib/test/test_random.py
Dosyayı görüntüle @
ddf71719
...
...
@@ -227,6 +227,14 @@ class TestBasicOps:
with
self
.
assertRaises
(
IndexError
):
choices
([],
cum_weights
=
[],
k
=
5
)
def
test_choices_subnormal
(
self
):
# Subnormal weights would occassionally trigger an IndexError
# in choices() when the value returned by random() was large
# enough to make `random() * total` round up to the total.
# See https://bugs.python.org/msg275594 for more detail.
choices
=
self
.
gen
.
choices
choices
(
population
=
[
1
,
2
],
weights
=
[
1e-323
,
1e-323
],
k
=
5000
)
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
...
...
Misc/NEWS.d/next/Library/2018-06-27-00-31-30.bpo-24567.FuePyY.rst
0 → 100644
Dosyayı görüntüle @
ddf71719
Improve random.choices() to handle subnormal input weights that could
occasionally trigger an IndexError.
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