From 101447b3feb7326011e9f805264b92a4c927ad49 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 9 Mar 2015 10:37:50 -0400 Subject: [PATCH] fix up import style --- Lib/test/test_float.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/Lib/test/test_float.py b/Lib/test/test_float.py index 1baa6a9bbbf..e87aab0dd39 100644 --- a/Lib/test/test_float.py +++ b/Lib/test/test_float.py @@ -1,13 +1,16 @@ -import unittest, struct -import os -import sys -from test import support +import fractions import math -from math import isinf, isnan, copysign, ldexp import operator +import os +import random +import sys +import struct import time -import random, fractions +import unittest + +from test import support +from math import isinf, isnan, copysign, ldexp INF = float("inf") NAN = float("nan")