More future imports for safety

This commit is contained in:
Christopher Grebs 2014-01-05 19:15:09 -08:00 committed by Ben Firshman
parent c6e91db32f
commit f600fa8bf3
3 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,4 @@
from __future__ import print_function
# Adapted from https://github.com/benthor/remotty/blob/master/socketclient.py
from select import select

View File

@ -1,5 +1,6 @@
from __future__ import unicode_literals
from __future__ import absolute_import
from __future__ import division
import datetime
import os
import socket

View File

@ -66,6 +66,9 @@ Result:
ijkl 0.000 5.000e-78 89 0.000
mnop 0.023 5.000e+78 92 1.280e+22
"""
from __future__ import division
from __future__ import print_function
from functools import reduce
__all__ = ["Texttable", "ArraySizeError"]