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
dc4872ee
Kaydet (Commit)
dc4872ee
authored
Eyl 07, 2010
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix corner case for Random.choice() and add tests.
üst
c324697b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
random.py
Lib/random.py
+5
-1
test_random.py
Lib/test/test_random.py
+7
-0
No files found.
Lib/random.py
Dosyayı görüntüle @
dc4872ee
...
@@ -239,7 +239,11 @@ class Random(_random.Random):
...
@@ -239,7 +239,11 @@ class Random(_random.Random):
def
choice
(
self
,
seq
):
def
choice
(
self
,
seq
):
"""Choose a random element from a non-empty sequence."""
"""Choose a random element from a non-empty sequence."""
return
seq
[
self
.
_randbelow
(
len
(
seq
))]
# raises IndexError if seq is empty
try
:
i
=
self
.
_randbelow
(
len
(
seq
))
except
ValueError
:
raise
IndexError
(
'Cannot choose from an empty sequence'
)
return
seq
[
i
]
def
shuffle
(
self
,
x
,
random
=
None
,
int
=
int
):
def
shuffle
(
self
,
x
,
random
=
None
,
int
=
int
):
"""x, random=random.random -> shuffle list x in place; return None.
"""x, random=random.random -> shuffle list x in place; return None.
...
...
Lib/test/test_random.py
Dosyayı görüntüle @
dc4872ee
...
@@ -42,6 +42,13 @@ class TestBasicOps(unittest.TestCase):
...
@@ -42,6 +42,13 @@ class TestBasicOps(unittest.TestCase):
self
.
assertRaises
(
TypeError
,
self
.
gen
.
seed
,
1
,
2
,
3
,
4
)
self
.
assertRaises
(
TypeError
,
self
.
gen
.
seed
,
1
,
2
,
3
,
4
)
self
.
assertRaises
(
TypeError
,
type
(
self
.
gen
),
[])
self
.
assertRaises
(
TypeError
,
type
(
self
.
gen
),
[])
def
test_choice
(
self
):
choice
=
self
.
gen
.
choice
with
self
.
assertRaises
(
IndexError
):
choice
([])
self
.
assertEqual
(
choice
([
50
]),
50
)
self
.
assertIn
(
choice
([
25
,
75
]),
[
25
,
75
])
def
test_sample
(
self
):
def
test_sample
(
self
):
# For the entire allowable range of 0 <= k <= N, validate that
# For the entire allowable range of 0 <= k <= N, validate that
# the sample is of the correct length and contains only unique items
# the sample is of the correct length and contains only unique items
...
...
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