diff options
author | Brian Curtin <brian@python.org> | 2011-11-11 15:41:17 (GMT) |
---|---|---|
committer | Brian Curtin <brian@python.org> | 2011-11-11 15:41:17 (GMT) |
commit | 4ff29db243e0c64356477f0d0b7270b35365757e (patch) | |
tree | 137d30968db40a9ff63441e11bbe26d597a2b4d4 /Lib/random.py | |
parent | 40dc919b0d44ead37d39a1daa8c84e07780a9bb2 (diff) | |
parent | 675f6b87cdfa0ceb15573c5110a26c09a07c1a2c (diff) | |
download | cpython-4ff29db243e0c64356477f0d0b7270b35365757e.zip cpython-4ff29db243e0c64356477f0d0b7270b35365757e.tar.gz cpython-4ff29db243e0c64356477f0d0b7270b35365757e.tar.bz2 |
Merge 3.2
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 a8f1a43..ac80ca7 100644 --- a/Lib/random.py +++ b/Lib/random.py @@ -36,7 +36,6 @@ General notes on the underlying Mersenne Twister core generator: """ -from __future__ import division 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, ceil as _ceil |