diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-09-02 02:16:04 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-09-02 02:16:04 +0600 | 
| commit | e5e78797e6e9873b93e550c32f454bbd5444a4ab (patch) | |
| tree | e648c8ecde9cd72343ddd28f485b4322453e074c | |
| parent | 77306e8b970f462d202db5914d0382b176172f05 (diff) | |
[utils] Strict HTTP responses (Closes #6727)
| -rw-r--r-- | youtube_dl/utils.py | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index e265c7574..b7a423166 100644 --- 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: | 
