Skip to content

Commit a68c1bc

Browse files
committed
Remove legacy "from __future__ import with_statement" lines.
1 parent 18a7d2b commit a68c1bc

File tree

9 files changed

+1
-15
lines changed

9 files changed

+1
-15
lines changed

Doc/tools/rstlint.py

-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
# TODO: - wrong versions in versionadded/changed
1010
# - wrong markup after versionchanged directive
1111

12-
from __future__ import with_statement
13-
1412
import os
1513
import re
1614
import sys

Lib/lib2to3/refactor.py

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
provides infrastructure to write your own refactoring tool.
99
"""
1010

11-
from __future__ import with_statement
12-
1311
__author__ = "Guido van Rossum <[email protected]>"
1412

1513

Lib/lib2to3/tests/test_parser.py

-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
test_grammar.py files from both Python 2 and Python 3.
77
"""
88

9-
from __future__ import with_statement
10-
119
# Testing imports
1210
from . import support
1311
from .support import driver

Lib/lib2to3/tests/test_pytree.py

-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
especially when debugging a test.
1010
"""
1111

12-
from __future__ import with_statement
13-
1412
# Testing imports
1513
from . import support
1614

Lib/lib2to3/tests/test_refactor.py

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
Unit tests for refactor.py.
33
"""
44

5-
from __future__ import with_statement
6-
75
import sys
86
import os
97
import codecs

Tools/gdb/libpython.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
# NOTE: some gdbs are linked with Python 3, so this file should be dual-syntax
4545
# compatible (2.6+ and 3.0+). See #19308.
4646

47-
from __future__ import print_function, with_statement
47+
from __future__ import print_function
4848
import gdb
4949
import os
5050
import locale

Tools/hg/hgtouch.py

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
88
In addition to the dependency syntax, #-comments are supported.
99
"""
10-
from __future__ import with_statement
1110
import errno
1211
import os
1312
import time

Tools/pybench/With.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from __future__ import with_statement
21
from pybench import Test
32

43
class WithFinally(Test):

Tools/scripts/generate_opcode_h.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# This script generates the opcode.h header file.
22

3-
from __future__ import with_statement
4-
53
import sys
64
header = """/* Auto-generated by Tools/scripts/generate_opcode_h.py */
75
#ifndef Py_OPCODE_H

0 commit comments

Comments
 (0)