summaryrefslogtreecommitdiff
path: root/tests/functional/i/inconsistent/inconsistent_mro.py
blob: 0e2ecb9c219e59054d51db07d6bb0c3db3000c19 (plain)
1
2
3
4
5
6
7
8
9
"""Tests for inconsistent-mro."""
# pylint: disable=missing-docstring,too-few-public-methods

class Str(str):
    pass


class Inconsistent(str, Str): # [inconsistent-mro]
    pass