diff options
| author | Benjamin Peterson <benjamin@python.org> | 2015-03-09 14:37:59 (GMT) |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2015-03-09 14:37:59 (GMT) |
| commit | 5d2d63ed7dab4487e2f0f0d0f3d2cf5b185b5082 (patch) | |
| tree | 3d4db571ef5a5ca09e91161fe93c8c832ed8e57c /Lib/test | |
| parent | 551719be4a213494a6052bd3988746e097cd7947 (diff) | |
| parent | 101447b3feb7326011e9f805264b92a4c927ad49 (diff) | |
| download | cpython-5d2d63ed7dab4487e2f0f0d0f3d2cf5b185b5082.zip cpython-5d2d63ed7dab4487e2f0f0d0f3d2cf5b185b5082.tar.gz cpython-5d2d63ed7dab4487e2f0f0d0f3d2cf5b185b5082.tar.bz2 | |
merge 3.4
Diffstat (limited to 'Lib/test')
| -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") |
