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
3051cc3a
Kaydet (Commit)
3051cc3a
authored
Eyl 07, 2010
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Minor code cleanup
üst
f763a728
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
random.py
Lib/random.py
+4
-4
No files found.
Lib/random.py
Dosyayı görüntüle @
3051cc3a
...
@@ -161,13 +161,13 @@ class Random(_random.Random):
...
@@ -161,13 +161,13 @@ class Random(_random.Random):
## -------------------- integer methods -------------------
## -------------------- integer methods -------------------
def
randrange
(
self
,
start
,
stop
=
None
,
step
=
1
,
int
=
int
,
default
=
None
,
def
randrange
(
self
,
start
,
stop
=
None
,
step
=
1
,
int
=
int
,
maxwidth
=
1
<<
BPF
):
maxwidth
=
1
<<
BPF
):
"""Choose a random item from range(start, stop[, step]).
"""Choose a random item from range(start, stop[, step]).
This fixes the problem with randint() which includes the
This fixes the problem with randint() which includes the
endpoint; in Python this is usually not what you want.
endpoint; in Python this is usually not what you want.
Do not supply the 'int', 'default', and 'maxwidth' arguments.
Do not supply the 'int' and 'maxwidth' arguments.
"""
"""
# This code is a bit messy to make it fast for the
# This code is a bit messy to make it fast for the
...
@@ -175,7 +175,7 @@ class Random(_random.Random):
...
@@ -175,7 +175,7 @@ class Random(_random.Random):
istart
=
int
(
start
)
istart
=
int
(
start
)
if
istart
!=
start
:
if
istart
!=
start
:
raise
ValueError
(
"non-integer arg 1 for randrange()"
)
raise
ValueError
(
"non-integer arg 1 for randrange()"
)
if
stop
is
default
:
if
stop
is
None
:
if
istart
>
0
:
if
istart
>
0
:
if
istart
>=
maxwidth
:
if
istart
>=
maxwidth
:
return
self
.
_randbelow
(
istart
)
return
self
.
_randbelow
(
istart
)
...
...
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