Remove redundant "from __future__ import ..."

This commit is contained in:
Pavel Minaev 2022-04-07 15:04:57 -07:00 committed by Pavel Minaev
parent 266a19809a
commit e87017e0b3
97 changed files with 4 additions and 192 deletions

View file

@ -2,7 +2,5 @@
# Licensed under the MIT License. See LICENSE in the project root
# for license information.
from __future__ import absolute_import, division, print_function, unicode_literals
# Expose Session directly.
from tests.debug.session import Session # noqa

View file

@ -2,8 +2,6 @@
# Licensed under the MIT License. See LICENSE in the project root
# for license information.
from __future__ import absolute_import, division, print_function, unicode_literals
"""Various means of communication with the debuggee."""
import threading

View file

@ -2,8 +2,6 @@
# Licensed under the MIT License. See LICENSE in the project root
# for license information.
from __future__ import absolute_import, division, print_function, unicode_literals
import os
import sys

View file

@ -2,8 +2,6 @@
# Licensed under the MIT License. See LICENSE in the project root
# for license information.
from __future__ import absolute_import, division, print_function, unicode_literals
import os
import re
import threading

View file

@ -2,8 +2,6 @@
# Licensed under the MIT License. See LICENSE in the project root
# for license information.
from __future__ import absolute_import, division, print_function, unicode_literals
"""Runners are recipes for executing Targets in a debug.Session.
Every function in this module that is decorated with @_runner must have at least two

View file

@ -2,8 +2,6 @@
# Licensed under the MIT License. See LICENSE in the project root
# for license information.
from __future__ import absolute_import, division, print_function, unicode_literals
import collections
import itertools
import os

View file

@ -2,8 +2,6 @@
# Licensed under the MIT License. See LICENSE in the project root
# for license information.
from __future__ import absolute_import, division, print_function, unicode_literals
import py
import os