aio-libs / aio-libs/aiohttp

Response content is omitted if it is erroneous

未关闭
#1,843 7 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看
enhancement
主要语言
Python
星标
16.5k
派生
2.4k
平均合并
17 小时 22 分钟
30 天内合并 PR
212

描述

## Long story short

Some http response content could be broken, in this case caller should be able to allow access to raw response content.

## Expected behaviour

Disable the gzip decompression on demand and return the raw data.

## Actual behaviour

Changes due to set env variable, see below.

## Steps to reproduce

```
import aiohttp
import asyncio
run = asyncio.get_event_loop().run_until_complete
resp = run(aiohttp.request('get', 'http://www.rofu.de'))
#FlowControlStreamReader protocol
run(resp.read())
#b''
```
when `AIOHTTP_NO_EXTENSIONS=1`

```
import aiohttp
import asyncio
run = asyncio.get_event_loop().run_until_complete
resp = run(aiohttp.request('get', 'http://www.rofu.de'))
#FlowControlStreamReader protocol
len(run(resp.read())) # blocks and raises TimeoutError
```

## Your environment

python 3.5.2
aiohttp 2.0.7
ubuntu 16.04

贡献指南

打开贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。