I am trying to subclass a deque, but can’t work out how to set the maxlen.
is there a __maxlen__ ?
EDIT: – is the following ‘Bad’ python?
from collections import deque
class MinMax(deque):
def __init__(self):
deque.__init__(self, maxlen=2)
mm = MinMax()
Call the super-class constructor: