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
c32b678f
Commit
c32b678f
authored
Feb 19, 2013
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#7842: backport fix for py_compile.compile syntax error message handling.
parent
5aff27ae
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
Lib/py_compile.py
Lib/py_compile.py
+1
-1
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/py_compile.py
View file @
c32b678f
...
@@ -112,7 +112,7 @@ def compile(file, cfile=None, dfile=None, doraise=False):
...
@@ -112,7 +112,7 @@ def compile(file, cfile=None, dfile=None, doraise=False):
try
:
try
:
codeobject
=
__builtin__
.
compile
(
codestring
,
dfile
or
file
,
'exec'
)
codeobject
=
__builtin__
.
compile
(
codestring
,
dfile
or
file
,
'exec'
)
except
Exception
,
err
:
except
Exception
,
err
:
py_exc
=
PyCompileError
(
err
.
__class__
,
err
.
args
,
dfile
or
file
)
py_exc
=
PyCompileError
(
err
.
__class__
,
err
,
dfile
or
file
)
if
doraise
:
if
doraise
:
raise
py_exc
raise
py_exc
else
:
else
:
...
...
Misc/NEWS
View file @
c32b678f
...
@@ -208,6 +208,8 @@ Core and Builtins
...
@@ -208,6 +208,8 @@ Core and Builtins
Library
Library
-------
-------
- Issue #7842: backported fix for py_compile.compile() syntax error handling.
- Issue #13153: Tkinter functions now raise TclError instead of ValueError when
- Issue #13153: Tkinter functions now raise TclError instead of ValueError when
a unicode argument contains non-BMP character.
a unicode argument contains non-BMP character.
...
...
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