youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit b17ca9c9459023e6e87ed8c19ca0200355597591
parent 080997b8083fed357061e301ab7f38484b24ded2
Author: Sergey M <dstftw@gmail.com>
Date:   Wed,  2 Sep 2015 20:22:59 +0600

Merge pull request #6731 from dstftw/strict-http-response

[utils] Strict HTTP responses (Closes #6727)
Diffstat:
Myoutube_dl/utils.py | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py @@ -587,6 +587,11 @@ class ContentTooShortError(Exception): def _create_http_connection(ydl_handler, http_class, is_https, *args, **kwargs): + # Working around python 2 bug (see http://bugs.python.org/issue17849) by limiting + # expected HTTP responses to meet HTTP/1.0 or later (see also + # https://github.com/rg3/youtube-dl/issues/6727) + if sys.version_info < (3, 0): + kwargs['strict'] = True hc = http_class(*args, **kwargs) source_address = ydl_handler._params.get('source_address') if source_address is not None: