summaryrefslogtreecommitdiff
path: root/tests/testdata/python3/data/fake_module_with_broken_getattr.py
blob: e860928ecb8b8f39cc1b37f6dab797e5f5439b07 (plain)
1
2
3
4
5
6
7
class Broken:

    def __getattr__(self, name):
        raise Exception("boom")


broken = Broken()