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
3c3346da
Kaydet (Commit)
3c3346da
authored
Mar 29, 2006
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SF bug #1460340: random.sample can raise KeyError
Fix the hit and miss style of testing for sets and dicts.
üst
62e97f02
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
10 deletions
+14
-10
random.py
Lib/random.py
+11
-10
test_random.py
Lib/test/test_random.py
+3
-0
No files found.
Lib/random.py
Dosyayı görüntüle @
3c3346da
...
...
@@ -312,17 +312,18 @@ class Random(_random.Random):
pool
[
j
]
=
pool
[
n
-
i
-
1
]
# move non-selected item into vacancy
else
:
try
:
n
>
0
and
(
population
[
0
],
population
[
n
//
2
],
population
[
n
-
1
])
except
(
TypeError
,
KeyError
):
# handle non-sequence iterables
population
=
tuple
(
population
)
selected
=
set
()
selected_add
=
selected
.
add
for
i
in
xrange
(
k
):
j
=
_int
(
random
()
*
n
)
while
j
in
selected
:
selected
=
set
()
selected_add
=
selected
.
add
for
i
in
xrange
(
k
):
j
=
_int
(
random
()
*
n
)
selected_add
(
j
)
result
[
i
]
=
population
[
j
]
while
j
in
selected
:
j
=
_int
(
random
()
*
n
)
selected_add
(
j
)
result
[
i
]
=
population
[
j
]
except
(
TypeError
,
KeyError
):
# handle sets and dictionaries
if
isinstance
(
population
,
list
):
raise
return
self
.
sample
(
list
(
population
),
k
)
return
result
## -------------------- real-valued distributions -------------------
...
...
Lib/test/test_random.py
Dosyayı görüntüle @
3c3346da
...
...
@@ -96,6 +96,9 @@ class TestBasicOps(unittest.TestCase):
self
.
gen
.
sample
(
dict
.
fromkeys
(
'abcdefghijklmnopqrst'
),
2
)
self
.
gen
.
sample
(
str
(
'abcdefghijklmnopqrst'
),
2
)
self
.
gen
.
sample
(
tuple
(
'abcdefghijklmnopqrst'
),
2
)
# SF bug #1460340 -- random.sample can raise KeyError
a
=
dict
.
fromkeys
(
range
(
10
)
+
range
(
10
,
100
,
2
)
+
range
(
100
,
110
))
self
.
gen
.
sample
(
a
,
3
)
def
test_gauss
(
self
):
# Ensure that the seed() method initializes all the hidden state. In
...
...
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