diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-03-09 14:37:50 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-03-09 14:37:50 (GMT) |
commit | 101447b3feb7326011e9f805264b92a4c927ad49 (patch) | |
tree | 562f732a94b6bb0c177b457049b0b261c634e86f | |
parent | 8be2142377ffd2473f522222968a87aad04adea8 (diff) | |
download | cpython-101447b3feb7326011e9f805264b92a4c927ad49.zip cpython-101447b3feb7326011e9f805264b92a4c927ad49.tar.gz cpython-101447b3feb7326011e9f805264b92a4c927ad49.tar.bz2 |
fix up import style
-rw-r--r-- | Lib/test/test_float.py | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/Lib/test/test_float.py b/Lib/test/test_float.py index 1baa6a9..e87aab0 100644 --- a/Lib/test/test_float.py +++ b/Lib/test/test_float.py @@ -1,13 +1,16 @@ -import unittest, struct +import fractions +import math +import operator import os +import random import sys +import struct +import time +import unittest + from test import support -import math from math import isinf, isnan, copysign, ldexp -import operator -import time -import random, fractions INF = float("inf") NAN = float("nan") |