Commit 675f6b87 authored by Brian Curtin's avatar Brian Curtin

Fix #13384. Remove __future__ import in 3.x code.

parent d3baae73
...@@ -36,7 +36,6 @@ General notes on the underlying Mersenne Twister core generator: ...@@ -36,7 +36,6 @@ General notes on the underlying Mersenne Twister core generator:
""" """
from __future__ import division
from warnings import warn as _warn from warnings import warn as _warn
from types import MethodType as _MethodType, BuiltinMethodType as _BuiltinMethodType 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 from math import log as _log, exp as _exp, pi as _pi, e as _e, ceil as _ceil
......
...@@ -73,6 +73,8 @@ Core and Builtins ...@@ -73,6 +73,8 @@ Core and Builtins
Library Library
------- -------
- Issue #13384: Remove unnecessary __future__ import in Lib/random.py
- Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely - Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely
when called with a timeout. Patch by Arnaud Ysmal. when called with a timeout. Patch by Arnaud Ysmal.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment