diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-02-15 23:56:39 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-02-15 23:56:39 (GMT) |
commit | 0e6d213177dd571dd634d286ae45c38eb06d63b9 (patch) | |
tree | c8a99a84c31512ce0524bdfadb6020443becd238 /Lib/random.py | |
parent | b61ff2982a9cc59073588676a9a0c1f97651313f (diff) | |
download | cpython-0e6d213177dd571dd634d286ae45c38eb06d63b9.zip cpython-0e6d213177dd571dd634d286ae45c38eb06d63b9.tar.gz cpython-0e6d213177dd571dd634d286ae45c38eb06d63b9.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/random.py')
-rw-r--r-- | Lib/random.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/random.py b/Lib/random.py index efaf7d6..1fe0b82 100644 --- a/Lib/random.py +++ b/Lib/random.py @@ -81,7 +81,7 @@ __all__ = ["Random","seed","random","uniform","randint","choice", "cunifvariate","expovariate","vonmisesvariate","gammavariate", "stdgamma","gauss","betavariate","paretovariate","weibullvariate", "getstate","setstate","jumpahead","whseed"] - + def _verify(name, expected): computed = eval(name) if abs(computed - expected) > 1e-7: |