X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Futils.py;h=7d15eab64e8bf7ef779bd3b6bd8a64fbfcd8ece7;hb=40b96352c99953aec9272574729077c06c235747;hp=7de7742e3c2357b8ed15e68656c0c7ea5ca389d5;hpb=189ba90996d810ea00b165d20d320869efe14518;p=youtube-dl diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 7de7742e3..7d15eab64 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -1128,15 +1128,6 @@ def shell_quote(args): return ' '.join(quoted_args) -def takewhile_inclusive(pred, seq): - """ Like itertools.takewhile, but include the latest evaluated element - (the first element so that Not pred(e)) """ - for e in seq: - yield e - if not pred(e): - return - - def smuggle_url(url, data): """ Pass additional data in a URL for internal use. """