Commit 42a20048 authored by Stefan Behnel's avatar Stefan Behnel

test fix

parent 4b25492f
__doc__ = u"""
>>> try:
... s = Spam()
... except StandardError, e:
... except KeyError, e:
... print("Exception: %s" % e)
... else:
... print("Did not raise the expected exception")
Exception: This is not a spanish inquisition
Exception: u'This is not a spanish inquisition'
"""
import sys
if sys.version_info[0] >= 3:
__doc__ = __doc__.replace(u"Exception, e", u"Exception as e")
__doc__ = __doc__.replace(u"Error, e", u"Error as e")
__doc__ = __doc__.replace(u" u'", u" '")
cdef extern from "Python.h":
ctypedef class types.ListType [object PyListObject]:
ctypedef class __builtin__.list [object PyListObject]:
pass
cdef class Spam(ListType):
cdef class Spam(list):
def __init__(self):
raise StandardError("This is not a spanish inquisition")
raise KeyError(u"This is not a spanish inquisition")
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