summaryrefslogtreecommitdiff
path: root/pylint/test/functional/uninferable_all_object.py
blob: 3e565f9ebf9e75ed476f1cbd4115a1d858761e12 (plain)
1
2
3
4
5
6
7
8
9
"""Test that non-inferable __all__ variables do not make Pylint crash."""

__all__ = sorted([
    'Dummy',
    'NonExistant',
    'path',
    'func',
    'inner',
    'InnerKlass'])