Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
fc35de40
Commit
fc35de40
authored
Mar 02, 2001
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test_global was broken by some recent checkin. Repairing.
parent
7a25765f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
9 deletions
+15
-9
Lib/test/output/test_global
Lib/test/output/test_global
+1
-1
Lib/test/test_global.py
Lib/test/test_global.py
+14
-8
No files found.
Lib/test/output/test_global
View file @
fc35de40
...
...
@@ -2,4 +2,4 @@ test_global
got SyntaxError as expected
got SyntaxError as expected
got SyntaxError as expected
got SyntaxError as expected
as expected, no SyntaxError
Lib/test/test_global.py
View file @
fc35de40
"""Verify that warnings are issued for global statements following use"""
"""Verify that warnings are issued for global statements following use
.
"""
from
test_support
import
check_syntax
...
...
@@ -6,13 +6,19 @@ import warnings
warnings
.
filterwarnings
(
"error"
,
module
=
"<test code>"
)
def
compile_and_c
atch_warning
(
text
):
def
compile_and_c
heck
(
text
,
should_fail
=
1
):
try
:
compile
(
text
,
"<test code>"
,
"exec"
)
except
SyntaxError
,
msg
:
print
"got SyntaxError as expected"
if
should_fail
:
print
"got SyntaxError as expected"
else
:
print
"raised unexpected SyntaxError:"
,
text
else
:
print
"expected SyntaxError"
if
should_fail
:
print
"should have raised SyntaxError:"
,
text
else
:
print
"as expected, no SyntaxError"
prog_text_1
=
"""
def wrong1():
...
...
@@ -21,14 +27,14 @@ def wrong1():
global a
global b
"""
compile_and_c
atch_warning
(
prog_text_1
)
compile_and_c
heck
(
prog_text_1
)
prog_text_2
=
"""
def wrong2():
print x
global x
"""
compile_and_c
atch_warning
(
prog_text_2
)
compile_and_c
heck
(
prog_text_2
)
prog_text_3
=
"""
def wrong3():
...
...
@@ -36,10 +42,10 @@ def wrong3():
x = 2
global x
"""
compile_and_c
atch_warning
(
prog_text_3
)
compile_and_c
heck
(
prog_text_3
)
prog_text_4
=
"""
global x
x = 2
"""
compile_and_c
atch_warning
(
prog_text_4
)
compile_and_c
heck
(
prog_text_4
,
0
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment