]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/utils.py
[dash,youtube] Download live from start to end (#888)
[yt-dlp.git] / yt_dlp / utils.py
index 81c95f3e971123466de66f772955df14da701bd9..2919324c660a558aa8778d4c31064bd41ea7a53f 100644 (file)
@@ -2631,12 +2631,6 @@ def __reversed__(self):
     def __copy__(self):
         return type(self)(self.__iterable, reverse=self.__reversed, _cache=self.__cache)
 
-    def __deepcopy__(self, memo):
-        # FIXME: This is actually just a shallow copy
-        id_ = id(self)
-        memo[id_] = self.__copy__()
-        return memo[id_]
-
     def __repr__(self):
         # repr and str should mimic a list. So we exhaust the iterable
         return repr(self.exhaust())