tptimer/env/lib/python2.7/site-packages/pylint/test/functional/inconsistent_mro.py

10 lines
198 B
Python
Raw Normal View History

2018-07-20 05:43:02 +00:00
"""Tests for inconsistent-mro."""
# pylint: disable=missing-docstring,too-few-public-methods,no-init
class Str(str):
pass
class Inconsistent(str, Str): # [inconsistent-mro]
pass