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
85079da3
Commit
85079da3
authored
Jul 15, 2011
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
port 8d05f697acd4 (#11627)
parent
dec11985
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
2 deletions
+21
-2
Lib/test/test_exceptions.py
Lib/test/test_exceptions.py
+8
-0
Misc/NEWS
Misc/NEWS
+3
-0
Python/ceval.c
Python/ceval.c
+10
-2
No files found.
Lib/test/test_exceptions.py
View file @
85079da3
...
...
@@ -464,6 +464,14 @@ class ExceptionTests(unittest.TestCase):
self
.
assertTrue
(
e
is
RuntimeError
,
e
)
self
.
assertIn
(
"maximum recursion depth exceeded"
,
str
(
v
))
def
test_new_returns_invalid_instance
(
self
):
# See issue #11627.
class
MyException
(
Exception
):
def
__new__
(
cls
,
*
args
):
return
object
()
with
self
.
assertRaises
(
TypeError
):
raise
MyException
# Helper class used by TestSameStrAndUnicodeMsg
...
...
Misc/NEWS
View file @
85079da3
...
...
@@ -9,6 +9,9 @@ What's New in Python 2.7.3?
Core and Builtins
-----------------
- Issue #11627: Fix segfault when __new__ on a exception returns a non-exception
class.
- Issue #12149: Update the method cache after a type'
s
dictionnary
gets
cleared
by
the
garbage
collector
.
This
fixes
a
segfault
when
an
instance
and
its
type
get
caught
in
a
reference
cycle
,
and
the
instance
's
...
...
Python/ceval.c
View file @
85079da3
...
...
@@ -3515,9 +3515,17 @@ do_raise(PyObject *type, PyObject *value, PyObject *tb)
Py_DECREF
(
tmp
);
}
if
(
PyExceptionClass_Check
(
type
))
if
(
PyExceptionClass_Check
(
type
))
{
PyErr_NormalizeException
(
&
type
,
&
value
,
&
tb
);
if
(
!
PyExceptionInstance_Check
(
value
))
{
PyErr_Format
(
PyExc_TypeError
,
"calling %s() should have returned an instance of "
"BaseException, not '%s'"
,
((
PyTypeObject
*
)
type
)
->
tp_name
,
Py_TYPE
(
value
)
->
tp_name
);
goto
raise_error
;
}
}
else
if
(
PyExceptionInstance_Check
(
type
))
{
/* Raising an instance. The value should be a dummy. */
if
(
value
!=
Py_None
)
{
...
...
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