Merge pull request #5523 from jaimeMF/remove-format-limit

Remove the --max-quality option
This commit is contained in:
Sergey M. 2015-04-27 16:44:58 +05:00
commit 40b96352c9
7 changed files with 2 additions and 59 deletions

View file

@ -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. """