Files
python-by-example-150-chall…/venv/lib/python3.6/site-packages/pylint/test/functional/inconsistent_mro.py

10 lines
198 B
Python
Raw Normal View History

2019-08-04 15:26:35 +03: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