Add 'from __future__ import absolute_import' to all files to enforce Python3-style imports

This commit is contained in:
Greg Neagle
2019-05-03 21:34:56 -07:00
parent 531d99a01a
commit df60207145
85 changed files with 112 additions and 76 deletions

View File

@@ -25,7 +25,7 @@ This will have the effect of unbuffering output I/O from the subprocess.
stdin of the subprocess is not connected to the stdin of this parent
process.
"""
from __future__ import print_function
from __future__ import absolute_import, print_function
import fcntl
import os