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>
This commit is contained in:
Simon Glass 2020-04-17 18:08:54 -06:00
parent 515ce965d6
commit 83a4518771
20 changed files with 0 additions and 40 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

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

View File

@ -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

View File

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

View File

@ -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

View File

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

View File

@ -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

View File

@ -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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -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