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
e9ee2076
Kaydet (Commit)
e9ee2076
authored
Ara 30, 2016
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #29061: secrets.randbelow() would hang with a negative input
üst
9ea82dda
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
0 deletions
+7
-0
secrets.py
Lib/secrets.py
+2
-0
test_secrets.py
Lib/test/test_secrets.py
+1
-0
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/secrets.py
Dosyayı görüntüle @
e9ee2076
...
...
@@ -26,6 +26,8 @@ choice = _sysrand.choice
def
randbelow
(
exclusive_upper_bound
):
"""Return a random int in the range [0, n)."""
if
exclusive_upper_bound
<=
0
:
raise
ValueError
(
"Upper bound must be positive."
)
return
_sysrand
.
_randbelow
(
exclusive_upper_bound
)
DEFAULT_ENTROPY
=
32
# number of bytes to return by default
...
...
Lib/test/test_secrets.py
Dosyayı görüntüle @
e9ee2076
...
...
@@ -70,6 +70,7 @@ class Random_Tests(unittest.TestCase):
for
i
in
range
(
2
,
10
):
self
.
assertIn
(
secrets
.
randbelow
(
i
),
range
(
i
))
self
.
assertRaises
(
ValueError
,
secrets
.
randbelow
,
0
)
self
.
assertRaises
(
ValueError
,
secrets
.
randbelow
,
-
1
)
class
Token_Tests
(
unittest
.
TestCase
):
...
...
Misc/ACKS
Dosyayı görüntüle @
e9ee2076
...
...
@@ -369,6 +369,7 @@ Daniel Dittmar
Josip Djolonga
Walter Dörwald
Jaromir Dolecek
Brendan Donegan
Ismail Donmez
Robert Donohue
Marcos Donolo
...
...
Misc/NEWS
Dosyayı görüntüle @
e9ee2076
...
...
@@ -43,6 +43,9 @@ Library
- Issue #29085: Allow random.Random.seed() to use high quality OS randomness
rather than the pid and time.
- Issue #29061: Fixed bug in secrets.randbelow() which would hang when given
a negative input. Patch by Brendan Donegan.
- Issue #29079: Prevent infinite loop in pathlib.resolve() on Windows
- Issue #13051: Fixed recursion errors in large or resized
...
...
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