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
4779399e
Commit
4779399e
authored
Feb 19, 2001
by
Jeremy Hylton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add test for syntax error on "x = 1 + 1".
Move check_syntax() function into test_support.
parent
c348cd75
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
22 deletions
+13
-22
Lib/test/output/test_grammar
Lib/test/output/test_grammar
+0
-5
Lib/test/test_grammar.py
Lib/test/test_grammar.py
+3
-8
Lib/test/test_scope.py
Lib/test/test_scope.py
+1
-9
Lib/test/test_support.py
Lib/test/test_support.py
+9
-0
No files found.
Lib/test/output/test_grammar
View file @
4779399e
...
...
@@ -14,7 +14,6 @@ expr_input
eval_input
funcdef
lambdef
SyntaxError expected for "lambda x: x = 2"
simple_stmt
expr_stmt
print_stmt
...
...
@@ -26,8 +25,6 @@ extended print_stmt
1 2 3
1 1 1
hello world
SyntaxError expected for "print ,"
SyntaxError expected for "print >> x,"
del_stmt
pass_stmt
flow_stmt
...
...
@@ -62,6 +59,4 @@ classdef
[(1, 'Apple'), (1, 'Banana'), (1, 'Coconut'), (2, 'Apple'), (2, 'Banana'), (2, 'Coconut'), (3, 'Apple'), (3, 'Banana'), (3, 'Coconut'), (4, 'Apple'), (4, 'Banana'), (4, 'Coconut'), (5, 'Apple'), (5, 'Banana'), (5, 'Coconut')]
[(1, 'Banana'), (1, 'Coconut'), (2, 'Banana'), (2, 'Coconut'), (3, 'Banana'), (3, 'Coconut'), (4, 'Banana'), (4, 'Coconut'), (5, 'Banana'), (5, 'Coconut')]
[0, 0, 0]
SyntaxError expected for "[i, s for i in nums for s in strs]"
SyntaxError expected for "[x if y]"
[('Boeing', 'Airliner'), ('Boeing', 'Engine'), ('Ford', 'Engine'), ('Macdonalds', 'Cheeseburger')]
Lib/test/test_grammar.py
View file @
4779399e
...
...
@@ -3,14 +3,6 @@
from
test_support
import
*
def
check_syntax
(
statement
):
try
:
compile
(
statement
,
'<string>'
,
'exec'
)
except
SyntaxError
:
print
'SyntaxError expected for "%s"'
%
statement
else
:
print
'Missing SyntaxError: "%s"'
%
statement
print
'1. Parser'
print
'1.1 Tokens'
...
...
@@ -280,6 +272,9 @@ x, y, z = 1, 2, 3
abc
=
a
,
b
,
c
=
x
,
y
,
z
=
xyz
=
1
,
2
,
(
3
,
4
)
# NB these variables are deleted below
check_syntax
(
"x + 1 = 1"
)
check_syntax
(
"a + 1 = b + 2"
)
print
'print_stmt'
# 'print' (test ',')* [test]
print
1
,
2
,
3
print
1
,
2
,
3
,
...
...
Lib/test/test_scope.py
View file @
4779399e
from
test.test_support
import
verify
,
TestFailed
from
test.test_support
import
verify
,
TestFailed
,
check_syntax
print
"1. simple nesting"
...
...
@@ -177,14 +177,6 @@ verify(f(6) == 720)
print
"11. unoptimized namespaces"
def
check_syntax
(
s
):
try
:
compile
(
s
,
'?'
,
'exec'
)
except
SyntaxError
:
pass
else
:
raise
TestFailed
check_syntax
(
"""def unoptimized_clash1(strip):
def f(s):
from string import *
...
...
Lib/test/test_support.py
View file @
4779399e
...
...
@@ -79,3 +79,12 @@ def verify(condition, reason='test failed'):
if
not
condition
:
raise
TestFailed
(
reason
)
def
check_syntax
(
statement
):
try
:
compile
(
statement
,
'<string>'
,
'exec'
)
except
SyntaxError
:
pass
else
:
print
'Missing SyntaxError: "%s"'
%
statement
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