Commit a950f1a7 authored by Min RK's avatar Min RK

set IGNORE_EXCEPTION_DETAIL on MyException test

Test is failing on Python 3 because output is:

    builtin_type_inheritance_T608.MyException: 3

on py3, but

     MyException: 3

on py2
parent 73db250c
...@@ -117,7 +117,7 @@ cdef class MyDict(dict): ...@@ -117,7 +117,7 @@ cdef class MyDict(dict):
cdef class MyException(Exception): cdef class MyException(Exception):
""" """
>>> raise MyException(3) >>> raise MyException(3) # doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last): Traceback (most recent call last):
... ...
MyException: 3 MyException: 3
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment