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
3ec7da92
Commit
3ec7da92
authored
Jan 22, 2014
by
Florent Xicluna
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #17825: Cursor ^ is correctly positioned for SyntaxError and IndentationError.
parent
c0a6fb2b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
7 deletions
+21
-7
Lib/test/test_traceback.py
Lib/test/test_traceback.py
+14
-4
Lib/traceback.py
Lib/traceback.py
+4
-3
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_traceback.py
View file @
3ec7da92
...
...
@@ -35,6 +35,9 @@ class SyntaxTracebackCases(unittest.TestCase):
def
syntax_error_with_caret_non_ascii
(
self
):
compile
(
'Python = "
\
u1e54
\
xfd
\
u0163
\
u0125
\
xf2
\
xf1
" +'
,
"?"
,
"exec"
)
def
syntax_error_bad_indentation2
(
self
):
compile
(
" print(2)"
,
"?"
,
"exec"
)
def
test_caret
(
self
):
err
=
self
.
get_exception_format
(
self
.
syntax_error_with_caret
,
SyntaxError
)
...
...
@@ -46,14 +49,14 @@ class SyntaxTracebackCases(unittest.TestCase):
err
=
self
.
get_exception_format
(
self
.
syntax_error_with_caret_2
,
SyntaxError
)
self
.
assertIn
(
"^"
,
err
[
2
])
# third line has caret
self
.
assert
True
(
err
[
2
].
count
(
'
\
n
'
)
==
1
)
# and no additional newline
self
.
assert
True
(
err
[
1
].
find
(
"+"
)
==
err
[
2
].
find
(
"^"
))
# in the right place
self
.
assert
Equal
(
err
[
2
].
count
(
'
\
n
'
),
1
)
# and no additional newline
self
.
assert
Equal
(
err
[
1
].
find
(
"+"
),
err
[
2
].
find
(
"^"
))
# in the right place
err
=
self
.
get_exception_format
(
self
.
syntax_error_with_caret_non_ascii
,
SyntaxError
)
self
.
assertIn
(
"^"
,
err
[
2
])
# third line has caret
self
.
assert
True
(
err
[
2
].
count
(
'
\
n
'
)
==
1
)
# and no additional newline
self
.
assert
True
(
err
[
1
].
find
(
"+"
)
==
err
[
2
].
find
(
"^"
))
# in the right place
self
.
assert
Equal
(
err
[
2
].
count
(
'
\
n
'
),
1
)
# and no additional newline
self
.
assert
Equal
(
err
[
1
].
find
(
"+"
),
err
[
2
].
find
(
"^"
))
# in the right place
def
test_nocaret
(
self
):
exc
=
SyntaxError
(
"error"
,
(
"x.py"
,
23
,
None
,
"bad syntax"
))
...
...
@@ -69,6 +72,13 @@ class SyntaxTracebackCases(unittest.TestCase):
self
.
assertIn
(
"^"
,
err
[
2
])
self
.
assertEqual
(
err
[
1
].
find
(
")"
),
err
[
2
].
find
(
"^"
))
err
=
self
.
get_exception_format
(
self
.
syntax_error_bad_indentation2
,
IndentationError
)
self
.
assertEqual
(
len
(
err
),
4
)
self
.
assertEqual
(
err
[
1
].
strip
(),
"print(2)"
)
self
.
assertIn
(
"^"
,
err
[
2
])
self
.
assertEqual
(
err
[
1
].
find
(
"p"
),
err
[
2
].
find
(
"^"
))
def
test_base_exception
(
self
):
# Test that exceptions derived from BaseException are formatted right
e
=
KeyboardInterrupt
()
...
...
Lib/traceback.py
View file @
3ec7da92
...
...
@@ -227,11 +227,12 @@ def format_exception_only(etype, value):
if
badline
is
not
None
:
lines
.
append
(
' %s
\
n
'
%
badline
.
strip
())
if
offset
is
not
None
:
caretspace
=
badline
.
rstrip
(
'
\
n
'
)[:
offset
].
lstrip
()
caretspace
=
badline
.
rstrip
(
'
\
n
'
)
offset
=
min
(
len
(
caretspace
),
offset
)
-
1
caretspace
=
caretspace
[:
offset
].
lstrip
()
# non-space whitespace (likes tabs) must be kept for alignment
caretspace
=
((
c
.
isspace
()
and
c
or
' '
)
for
c
in
caretspace
)
# only three spaces to account for offset1 == pos 0
lines
.
append
(
' %s^
\
n
'
%
''
.
join
(
caretspace
))
lines
.
append
(
' %s^
\
n
'
%
''
.
join
(
caretspace
))
msg
=
value
.
msg
or
"<no detail available>"
lines
.
append
(
"%s: %s
\
n
"
%
(
stype
,
msg
))
return
lines
...
...
Misc/NEWS
View file @
3ec7da92
...
...
@@ -10,6 +10,9 @@ What's New in Python 3.3.4 release candidate 1?
Core and Builtins
-----------------
- Issue #17825: Cursor "^" is correctly positioned for SyntaxError and
IndentationError.
- Issue #2382: SyntaxError cursor "^" is now written at correct position in most
cases when multibyte characters are in line (before "^"). This still not
works correctly with wide East Asian characters.
...
...
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