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
9caf9c04
Commit
9caf9c04
authored
Feb 10, 2003
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add tests and news entry about parser errors from bug #678518.
parent
573e0334
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
Lib/test/test_parser.py
Lib/test/test_parser.py
+17
-0
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_parser.py
View file @
9caf9c04
...
...
@@ -134,6 +134,13 @@ class RoundtripLegalSyntaxTestCase(unittest.TestCase):
self
.
check_suite
(
"import sys as system, math"
)
self
.
check_suite
(
"import sys, math as my_math"
)
def
test_pep263
(
self
):
self
.
check_suite
(
"# -*- coding: iso-8859-1 -*-
\
n
"
"pass
\
n
"
)
def
test_assert
(
self
):
self
.
check_suite
(
"assert alo < ahi and blo < bhi
\
n
"
)
#
# Second, we take *invalid* trees and make sure we get ParserError
# rejections for them.
...
...
@@ -355,6 +362,16 @@ class IllegalSyntaxTestCase(unittest.TestCase):
(
0
,
''
))
self
.
check_bad_tree
(
tree
,
"a $= b"
)
def
test_malformed_global
(
self
):
#doesn't have global keyword in ast
tree
=
(
257
,
(
264
,
(
265
,
(
266
,
(
282
,
(
1
,
'foo'
))),
(
4
,
''
))),
(
4
,
''
),
(
0
,
''
))
self
.
check_bad_tree
(
tree
,
"malformed global ast"
)
def
test_main
():
loader
=
unittest
.
TestLoader
()
...
...
Misc/NEWS
View file @
9caf9c04
...
...
@@ -42,6 +42,8 @@ Core and builtins
Extension modules
-----------------
- Fix some bugs in the parser module. SF bug #678518.
- Thanks to Scott David Daniels, a subtle bug in how the zlib
extension implemented flush() was fixed. Scott also rewrote the
zlib test suite using the unittest module. (SF bug #640230 and
...
...
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