summaryrefslogtreecommitdiff
path: root/tests/functional/i/invalid/invalid_all_format.py
blob: 10537c6fb10cb9215d512ca3f1f06a578cf8548f (plain)
1
2
3
4
5
6
7
"""Test invalid __all__ format.

Tuples with one element MUST contain a comma! Otherwise it's a string.
"""
__all__ = ("CONST")  # [invalid-all-format, superfluous-parens]

CONST = 42