Skip to content

Commit e8f5c44

Browse files
author
benjamin.peterson
committed
Remove some from __future__ import with_statements
git-svn-id: http://svn.python.org/projects/python/trunk@62606 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 5434efb commit e8f5c44

7 files changed

+0
-7
lines changed

Lib/calendar.py

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
Sunday as the last (the European convention). Use setfirstweekday() to
66
set the first day of the week (0=Monday, 6=Sunday)."""
77

8-
from __future__ import with_statement
98
import sys
109
import datetime
1110
import locale as _locale

Lib/test/test_cmd_line_script.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Tests command line execution of scripts
2-
from __future__ import with_statement
32

43
import unittest
54
import os

Lib/test/test_contextlib.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Unit tests for contextlib.py, and other context managers."""
22

3-
from __future__ import with_statement
43

54
import sys
65
import os

Lib/test/test_decimal.py

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
you're working through IDLE, you can import this test module and call test_main()
2424
with the corresponding argument.
2525
"""
26-
from __future__ import with_statement
2726

2827
import glob
2928
import math

Lib/test/test_frozen.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Test the frozen module defined in frozen.c.
2-
from __future__ import with_statement
32

43
from test.test_support import captured_stdout, run_unittest
54
import unittest

Lib/test/test_tempfile.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# tempfile.py unit tests.
2-
from __future__ import with_statement
32
import tempfile
43
import os
54
import sys

Lib/test/test_with.py

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
"""Unit tests for the with statement specified in PEP 343."""
44

5-
from __future__ import with_statement
65

76
__author__ = "Mike Bland"
87
__email__ = "mbland at acm dot org"

0 commit comments

Comments
 (0)