third_party.pylibs.pylint.src/test/input/func_newstyle_exceptions.py
root 4becf6f9e5 forget the past.
forget the past.
2006-04-26 10:48:09 +00:00

36 lines
573 B
Python

# pylint: disable-msg=C0103
"""test pb with exceptions and old/new style classes"""
__revision__ = 1
class OkException(Exception):
"""bien bien bien"""
class BofException:
"""mouais"""
class NewException(object):
"""non !"""
def fonctionOk():
"""raise"""
raise OkException('hop')
def fonctionBof():
"""raise"""
raise BofException('hop')
def fonctionNew():
"""raise"""
raise NewException()
def fonctionBof2():
"""raise"""
raise BofException, 'hop'
def fonctionNew2():
"""raise"""
raise NewException