Browse Source

patman: Drop references to __future__

We don't need these now that the tools using Python 3. Drop them.

Signed-off-by: Simon Glass <sjg@chromium.org>
Simon Glass 4 years ago
parent
commit
83a4518771

+ 0 - 2
tools/binman/binman.py

@@ -9,8 +9,6 @@
 
 """See README for more information"""
 
-from __future__ import print_function
-
 from distutils.sysconfig import get_python_lib
 import glob
 import multiprocessing

+ 0 - 2
tools/binman/cbfs_util.py

@@ -15,8 +15,6 @@ Currently supported: raw and stage types with compression, padding empty areas
     with empty files, fixed-offset files
 """
 
-from __future__ import print_function
-
 from collections import OrderedDict
 import io
 import struct

+ 0 - 2
tools/binman/cbfs_util_test.py

@@ -9,8 +9,6 @@ These create and read various CBFSs and compare the results with expected
 values and with cbfstool
 """
 
-from __future__ import print_function
-
 import io
 import os
 import shutil

+ 0 - 2
tools/binman/control.py

@@ -5,8 +5,6 @@
 # Creates binary images from input files controlled by a description
 #
 
-from __future__ import print_function
-
 from collections import OrderedDict
 import os
 import sys

+ 0 - 2
tools/binman/elf.py

@@ -5,8 +5,6 @@
 # Handle various things related to ELF images
 #
 
-from __future__ import print_function
-
 from collections import namedtuple, OrderedDict
 import command
 import io

+ 0 - 2
tools/binman/entry.py

@@ -4,8 +4,6 @@
 # Base class for all entries
 #
 
-from __future__ import print_function
-
 from collections import namedtuple
 import importlib
 import os

+ 0 - 2
tools/binman/etype/section.py

@@ -8,8 +8,6 @@ Sections are entries which can contain other entries. This allows hierarchical
 images to be created.
 """
 
-from __future__ import print_function
-
 from collections import OrderedDict
 import re
 import sys

+ 0 - 2
tools/binman/ftest.py

@@ -6,8 +6,6 @@
 #
 #    python -m unittest func_test.TestFunctional.testHelp
 
-from __future__ import print_function
-
 import hashlib
 from optparse import OptionParser
 import os

+ 0 - 2
tools/binman/image.py

@@ -5,8 +5,6 @@
 # Class for an image, the output of binman
 #
 
-from __future__ import print_function
-
 from collections import OrderedDict
 import fnmatch
 from operator import attrgetter

+ 0 - 2
tools/buildman/buildman.py

@@ -6,8 +6,6 @@
 
 """See README for more information"""
 
-from __future__ import print_function
-
 import multiprocessing
 import os
 import re

+ 0 - 2
tools/dtoc/dtoc.py

@@ -25,8 +25,6 @@ options. For more information about the use of this options and tool please
 see doc/driver-model/of-plat.rst
 """
 
-from __future__ import print_function
-
 from optparse import OptionParser
 import os
 import sys

+ 0 - 2
tools/dtoc/test_dtoc.py

@@ -9,8 +9,6 @@ This includes unit tests for some functions and functional tests for the dtoc
 tool.
 """
 
-from __future__ import print_function
-
 import collections
 import os
 import struct

+ 0 - 2
tools/dtoc/test_fdt.py

@@ -4,8 +4,6 @@
 # Written by Simon Glass <sjg@chromium.org>
 #
 
-from __future__ import print_function
-
 from optparse import OptionParser
 import glob
 import os

+ 0 - 2
tools/patman/series.py

@@ -2,8 +2,6 @@
 # Copyright (c) 2011 The Chromium OS Authors.
 #
 
-from __future__ import print_function
-
 import itertools
 import os
 

+ 0 - 2
tools/patman/settings.py

@@ -2,8 +2,6 @@
 # Copyright (c) 2011 The Chromium OS Authors.
 #
 
-from __future__ import print_function
-
 try:
     import configparser as ConfigParser
 except:

+ 0 - 2
tools/patman/terminal.py

@@ -7,8 +7,6 @@
 This module handles terminal interaction including ANSI color codes.
 """
 
-from __future__ import print_function
-
 import os
 import re
 import shutil

+ 0 - 2
tools/patman/test_util.py

@@ -3,8 +3,6 @@
 # Copyright (c) 2016 Google, Inc
 #
 
-from __future__ import print_function
-
 from contextlib import contextmanager
 import glob
 import os

+ 0 - 2
tools/patman/tools.py

@@ -3,8 +3,6 @@
 # Copyright (c) 2016 Google, Inc
 #
 
-from __future__ import print_function
-
 import command
 import glob
 import os

+ 0 - 2
tools/patman/tout.py

@@ -4,8 +4,6 @@
 # Terminal output logging.
 #
 
-from __future__ import print_function
-
 import sys
 
 import terminal

+ 0 - 2
tools/rmboard.py

@@ -23,8 +23,6 @@ This script works by:
 Search for ## to update the commit message manually.
 """
 
-from __future__ import print_function
-
 import glob
 import os
 import re