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
42d90161
Commit
42d90161
authored
Jul 15, 2003
by
Jeremy Hylton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SF patch 763201: handling of SyntaxErrors in symbol table build
Bug fix candidate.
parent
1955fcf6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
3 deletions
+30
-3
Lib/test/test_symtable.py
Lib/test/test_symtable.py
+15
-3
Lib/test/test_syntax.py
Lib/test/test_syntax.py
+15
-0
No files found.
Lib/test/test_symtable.py
View file @
42d90161
from
test.test_support
import
ver
ify
from
test.test_support
import
ver
eq
,
TestFailed
import
_symtable
symbols
=
_symtable
.
symtable
(
"def f(x): return x"
,
"?"
,
"exec"
)
verify
(
symbols
[
0
].
name
==
"global"
)
verify
(
len
([
ste
for
ste
in
symbols
.
values
()
if
ste
.
name
==
"f"
])
==
1
)
vereq
(
symbols
[
0
].
name
,
"global"
)
vereq
(
len
([
ste
for
ste
in
symbols
.
values
()
if
ste
.
name
==
"f"
]),
1
)
# Bug tickler: SyntaxError file name correct whether error raised
# while parsing or building symbol table.
def
checkfilename
(
brokencode
):
try
:
_symtable
.
symtable
(
brokencode
,
"spam"
,
"exec"
)
except
SyntaxError
,
e
:
vereq
(
e
.
filename
,
"spam"
)
else
:
raise
TestFailed
(
"no SyntaxError for %r"
%
(
brokencode
,))
checkfilename
(
"def f(x): foo)("
)
# parse-time
checkfilename
(
"def f(x): global x"
)
# symtable-build-time
Lib/test/test_syntax.py
View file @
42d90161
import
re
import
unittest
import
warnings
from
test
import
test_support
...
...
@@ -27,6 +28,20 @@ class SyntaxTestCase(unittest.TestCase):
def
test_assign_del
(
self
):
self
.
_check_error
(
"del f()"
,
"delete"
)
def
test_global_err_then_warn
(
self
):
# Bug tickler: The SyntaxError raised for one global statement
# shouldn't be clobbered by a SyntaxWarning issued for a later one.
source
=
re
.
sub
(
'(?m)^ *:'
,
''
,
"""
\
:def error(a):
: global a # SyntaxError
:def warning():
: b = 1
: global b # SyntaxWarning
:"""
)
warnings
.
filterwarnings
(
action
=
'ignore'
,
category
=
SyntaxWarning
)
self
.
_check_error
(
source
,
"global"
)
warnings
.
filters
.
pop
(
0
)
def
test_main
():
test_support
.
run_unittest
(
SyntaxTestCase
)
...
...
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