mirror of https://github.com/docker/docs.git
More future imports for safety
This commit is contained in:
parent
c6e91db32f
commit
f600fa8bf3
|
@ -1,3 +1,4 @@
|
||||||
|
from __future__ import print_function
|
||||||
# Adapted from https://github.com/benthor/remotty/blob/master/socketclient.py
|
# Adapted from https://github.com/benthor/remotty/blob/master/socketclient.py
|
||||||
|
|
||||||
from select import select
|
from select import select
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
from __future__ import absolute_import
|
from __future__ import absolute_import
|
||||||
|
from __future__ import division
|
||||||
import datetime
|
import datetime
|
||||||
import os
|
import os
|
||||||
import socket
|
import socket
|
||||||
|
|
|
@ -66,6 +66,9 @@ Result:
|
||||||
ijkl 0.000 5.000e-78 89 0.000
|
ijkl 0.000 5.000e-78 89 0.000
|
||||||
mnop 0.023 5.000e+78 92 1.280e+22
|
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"]
|
__all__ = ["Texttable", "ArraySizeError"]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue