diff options
author | Raymond Hettinger <python@rcn.com> | 2005-01-03 07:33:16 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-01-03 07:33:16 (GMT) |
commit | 362b92922237017825c49b686ab441c1d866af2d (patch) | |
tree | b4b4d6fda3df62e1120d1f72c7a62a72f17a740a /Lib/random.py | |
parent | 0c26ab02e61eacb5e59c2baa35535fbea019a76e (diff) | |
download | cpython-362b92922237017825c49b686ab441c1d866af2d.zip cpython-362b92922237017825c49b686ab441c1d866af2d.tar.gz cpython-362b92922237017825c49b686ab441c1d866af2d.tar.bz2 |
Removed unused line.
Diffstat (limited to 'Lib/random.py')
-rw-r--r-- | Lib/random.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/random.py b/Lib/random.py index 0a02787..42382d0 100644 --- a/Lib/random.py +++ b/Lib/random.py @@ -43,7 +43,6 @@ from warnings import warn as _warn from types import MethodType as _MethodType, BuiltinMethodType as _BuiltinMethodType from math import log as _log, exp as _exp, pi as _pi, e as _e from math import sqrt as _sqrt, acos as _acos, cos as _cos, sin as _sin -from math import floor as _floor from os import urandom as _urandom from binascii import hexlify as _hexlify |