blob: 36a13460f6122f84a2c057df8557a7c618753fbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Test various flavors of legal and illegal future statements
from test_support import unload
import re
rx = re.compile('\((\S+).py, line (\d+)')
def check_error_location(msg):
mo = rx.search(msg)
print "SyntaxError %s %s" % mo.group(1, 2)
# The first two tests should work
unload('test_future1')
import test_future1
unload('test_future2')
import test_future2
# The remaining tests should fail
try:
import test_future3
except SyntaxError, msg:
check_error_location(str(msg))
try:
import test_future4
except SyntaxError, msg:
check_error_location(str(msg))
try:
import test_future5
except SyntaxError, msg:
check_error_location(str(msg))
try:
import test_future6
except SyntaxError, msg:
check_error_location(str(msg))
try:
import test_future7
except SyntaxError, msg:
check_error_location(str(msg))
|