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
758888d4
Commit
758888d4
authored
May 30, 2011
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
don't restrict unexpected EOF errors to the first line (closes #12216)
parent
c8507bfe
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
Lib/test/test_grammar.py
Lib/test/test_grammar.py
+7
-0
Misc/NEWS
Misc/NEWS
+2
-0
Parser/parsetok.c
Parser/parsetok.c
+1
-1
No files found.
Lib/test/test_grammar.py
View file @
758888d4
...
...
@@ -125,6 +125,13 @@ the \'lazy\' dog.\n\
self
.
assertTrue
(
x
is
Ellipsis
)
self
.
assertRaises
(
SyntaxError
,
eval
,
".. ."
)
def
test_eof_error
(
self
):
samples
=
(
"def foo("
,
"
\
n
def foo("
,
"def foo(
\
n
"
)
for
s
in
samples
:
with
self
.
assertRaises
(
SyntaxError
)
as
cm
:
compile
(
s
,
"<test>"
,
"exec"
)
self
.
assertIn
(
"unexpected EOF"
,
str
(
cm
.
exception
))
class
GrammarTests
(
unittest
.
TestCase
):
# single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
...
...
Misc/NEWS
View file @
758888d4
...
...
@@ -10,6 +10,8 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
- Issue #12216: Allow unexpected EOF errors to happen on any line of the file.
- Issue #12199: The TryExcept and TryFinally and AST nodes have been unified
into a Try node.
...
...
Parser/parsetok.c
View file @
758888d4
...
...
@@ -232,7 +232,7 @@ parsetok(struct tok_state *tok, grammar *g, int start, perrdetail *err_ret,
PyParser_Delete
(
ps
);
if
(
n
==
NULL
)
{
if
(
tok
->
lineno
<=
1
&&
tok
->
done
==
E_EOF
)
if
(
tok
->
done
==
E_EOF
)
err_ret
->
error
=
E_EOF
;
err_ret
->
lineno
=
tok
->
lineno
;
if
(
tok
->
buf
!=
NULL
)
{
...
...
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