Remove legacy "from __future__ import with_statement" lines.

This commit is contained in:
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) 2016-09-08 13:47:41 -07:00
parent 18a7d2b455
commit a68c1bca7b
9 changed files with 1 additions and 15 deletions

View file

@ -9,8 +9,6 @@
# TODO: - wrong versions in versionadded/changed
# - wrong markup after versionchanged directive
from __future__ import with_statement
import os
import re
import sys

View file

@ -8,8 +8,6 @@
provides infrastructure to write your own refactoring tool.
"""
from __future__ import with_statement
__author__ = "Guido van Rossum <guido@python.org>"

View file

@ -6,8 +6,6 @@
test_grammar.py files from both Python 2 and Python 3.
"""
from __future__ import with_statement
# Testing imports
from . import support
from .support import driver

View file

@ -9,8 +9,6 @@
especially when debugging a test.
"""
from __future__ import with_statement
# Testing imports
from . import support

View file

@ -2,8 +2,6 @@
Unit tests for refactor.py.
"""
from __future__ import with_statement
import sys
import os
import codecs

View file

@ -44,7 +44,7 @@
# NOTE: some gdbs are linked with Python 3, so this file should be dual-syntax
# compatible (2.6+ and 3.0+). See #19308.
from __future__ import print_function, with_statement
from __future__ import print_function
import gdb
import os
import locale

View file

@ -7,7 +7,6 @@
In addition to the dependency syntax, #-comments are supported.
"""
from __future__ import with_statement
import errno
import os
import time

View file

@ -1,4 +1,3 @@
from __future__ import with_statement
from pybench import Test
class WithFinally(Test):

View file

@ -1,7 +1,5 @@
# This script generates the opcode.h header file.
from __future__ import with_statement
import sys
header = """/* Auto-generated by Tools/scripts/generate_opcode_h.py */
#ifndef Py_OPCODE_H