blob: 157adeb2abc9a50f94c757585ddb3a278c944fce (
plain)
1
2
3
4
5
6
7
8
9
10
|
"""This used to raise a non-parent-init-called on Pylint 1.3
See issue https://bitbucket.org/logilab/pylint/issue/308/ for reference"""
# pylint: disable=abstract-method, unused-argument
from tracemalloc import Sequence
class _Traces(Sequence):
def __init__(self, traces):
Sequence.__init__(self)
|