from threading import Lock from threading import Thread class LockedList(list): def __init__(self, *args, **kwargs): self._lock = Lock() super(L