summaryrefslogtreecommitdiff
path: root/tests/regressiontests/views/__init__.py
blob: d1c6e08f3538da947b5ebed0532b69d8db492dee (plain)
1
2
3
4
5
6
7
8
9
10
# -*- coding: utf8 -*-

class BrokenException(Exception):
    pass

except_args = ('Broken!',           # plain exception with ASCII text
               u'¡Broken!',         # non-ASCII unicode data
               '¡Broken!',          # non-ASCII, utf-8 encoded bytestring
               '\xa1Broken!', )     # non-ASCII, latin1 bytestring