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
09473ac0
Unverified
Kaydet (Commit)
09473ac0
authored
Ara 04, 2018
tarafından
Raymond Hettinger
Kaydeden (comit)
GitHub
Ara 04, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove unnecessary and over-restrictive type check (GH-10905)
üst
b8e689a6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
+0
-2
random.py
Lib/random.py
+0
-2
No files found.
Lib/random.py
Dosyayı görüntüle @
09473ac0
...
@@ -718,8 +718,6 @@ class SystemRandom(Random):
...
@@ -718,8 +718,6 @@ class SystemRandom(Random):
"""getrandbits(k) -> x. Generates an int with k random bits."""
"""getrandbits(k) -> x. Generates an int with k random bits."""
if
k
<=
0
:
if
k
<=
0
:
raise
ValueError
(
'number of bits must be greater than zero'
)
raise
ValueError
(
'number of bits must be greater than zero'
)
if
k
!=
int
(
k
):
raise
TypeError
(
'number of bits should be an integer'
)
numbytes
=
(
k
+
7
)
//
8
# bits / 8 and rounded up
numbytes
=
(
k
+
7
)
//
8
# bits / 8 and rounded up
x
=
int
.
from_bytes
(
_urandom
(
numbytes
),
'big'
)
x
=
int
.
from_bytes
(
_urandom
(
numbytes
),
'big'
)
return
x
>>
(
numbytes
*
8
-
k
)
# trim excess bits
return
x
>>
(
numbytes
*
8
-
k
)
# trim excess bits
...
...
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