summaryrefslogtreecommitdiffstats
path: root/Lib/random.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2021-01-25 21:02:04 (GMT)
committerGitHub <noreply@github.com>2021-01-25 21:02:04 (GMT)
commitf066bd94b9225a5a3c4ade5fc3ff81e3c49b7b32 (patch)
treeb2d22c54e628f087d86e9dfb0330ede92eb4a260 /Lib/random.py
parenteb9983c59b0683270328b5c40a115bb028209511 (diff)
downloadcpython-f066bd94b9225a5a3c4ade5fc3ff81e3c49b7b32.zip
cpython-f066bd94b9225a5a3c4ade5fc3ff81e3c49b7b32.tar.gz
cpython-f066bd94b9225a5a3c4ade5fc3ff81e3c49b7b32.tar.bz2
bpo-37319: Improve documentation, code and tests of randrange. (GH-19112)
Diffstat (limited to 'Lib/random.py')
-rw-r--r--Lib/random.py44
1 files changed, 20 insertions, 24 deletions
diff --git a/Lib/random.py b/Lib/random.py
index 30186fc..187b0a0 100644
--- a/Lib/random.py
+++ b/Lib/random.py
@@ -303,17 +303,15 @@ class Random(_random.Random):
try:
istart = _index(start)
except TypeError:
- if int(start) == start:
- istart = int(start)
- _warn('Float arguments to randrange() have been deprecated\n'
- 'since Python 3.10 and will be removed in a subsequent '
- 'version.',
- DeprecationWarning, 2)
- else:
+ istart = int(start)
+ if istart != start:
_warn('randrange() will raise TypeError in the future',
DeprecationWarning, 2)
raise ValueError("non-integer arg 1 for randrange()")
-
+ _warn('non-integer arguments to randrange() have been deprecated '
+ 'since Python 3.10 and will be removed in a subsequent '
+ 'version',
+ DeprecationWarning, 2)
if stop is None:
# We don't check for "step != 1" because it hasn't been
# type checked and converted to an integer yet.
@@ -327,31 +325,29 @@ class Random(_random.Random):
try:
istop = _index(stop)
except TypeError:
- if int(stop) == stop:
- istop = int(stop)
- _warn('Float arguments to randrange() have been deprecated\n'
- 'since Python 3.10 and will be removed in a subsequent '
- 'version.',
- DeprecationWarning, 2)
- else:
+ istop = int(stop)
+ if istop != stop:
_warn('randrange() will raise TypeError in the future',
DeprecationWarning, 2)
raise ValueError("non-integer stop for randrange()")
-
+ _warn('non-integer arguments to randrange() have been deprecated '
+ 'since Python 3.10 and will be removed in a subsequent '
+ 'version',
+ DeprecationWarning, 2)
+ width = istop - istart
try:
istep = _index(step)
except TypeError:
- if int(step) == step:
- istep = int(step)
- _warn('Float arguments to randrange() have been deprecated\n'
- 'since Python 3.10 and will be removed in a subsequent '
- 'version.',
- DeprecationWarning, 2)
- else:
+ istep = int(step)
+ if istep != step:
_warn('randrange() will raise TypeError in the future',
DeprecationWarning, 2)
raise ValueError("non-integer step for randrange()")
- width = istop - istart
+ _warn('non-integer arguments to randrange() have been deprecated '
+ 'since Python 3.10 and will be removed in a subsequent '
+ 'version',
+ DeprecationWarning, 2)
+ # Fast path.
if istep == 1:
if width > 0:
return istart + self._randbelow(width)