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
aa9d3697
Commit
aa9d3697
authored
May 01, 2016
by
Berker Peksag
Browse files
Options
Browse Files
Download
Plain Diff
Issue #23960: Cleanup args and kwargs on error in PyErr_SetImportError
Patch by Ofer Schwarz.
parents
f1e2671f
ec766d3c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Python/errors.c
Python/errors.c
+3
-3
No files found.
Python/errors.c
View file @
aa9d3697
...
...
@@ -727,9 +727,9 @@ PyErr_SetImportError(PyObject *msg, PyObject *name, PyObject *path)
PyTuple_SET_ITEM
(
args
,
0
,
msg
);
if
(
PyDict_SetItemString
(
kwargs
,
"name"
,
name
)
<
0
)
return
NULL
;
goto
done
;
if
(
PyDict_SetItemString
(
kwargs
,
"path"
,
path
)
<
0
)
return
NULL
;
goto
done
;
error
=
PyObject_Call
(
PyExc_ImportError
,
args
,
kwargs
);
if
(
error
!=
NULL
)
{
...
...
@@ -737,9 +737,9 @@ PyErr_SetImportError(PyObject *msg, PyObject *name, PyObject *path)
Py_DECREF
(
error
);
}
done:
Py_DECREF
(
args
);
Py_DECREF
(
kwargs
);
return
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