The `__future__` we relied on is now, where the 3 specific things are
all included [since Python 3.0](https://docs.python.org/3/library/__future__.html):
* absolute_import
* print_function
* unicode_literals
* division
These import statements are no-ops and are no longer necessary.
The utils/dev-scripts/at-to-filelist, utils/dev-scripts/split-cmdline and utils/build-parser-lib scripts needed to be reformatted with the black tool to agree with the linter.
Useful to show the control flow graph of a disassembled function.
The control flow graph can the be viewed with the viewcfg utility:
(lldb) disassemble
<copy-paste output to file.s>
$ blockifyasm < file.s | viewcfg