@@ -38,25 +38,33 @@ def _transform_headers(httpx_response):
38
38
39
39
async def _to_serialized_response (resp , aread ):
40
40
# The content shouldn't already have been read in by HTTPX.
41
- assert not hasattr (resp , "_decoder" )
42
-
43
- # Retrieve the content, but without decoding it.
44
- with patch .dict (resp .headers , {"Content-Encoding" : "" }):
45
- if aread :
46
- await resp .aread ()
47
- else :
48
- resp .read ()
49
-
50
- result = {
51
- "status" : {"code" : resp .status_code , "message" : resp .reason_phrase },
52
- "headers" : _transform_headers (resp ),
53
- "body" : {"string" : resp .content },
54
- }
55
-
56
- # As the content wasn't decoded, we restore the response to a state which
57
- # will be capable of decoding the content for the consumer.
58
- del resp ._decoder
59
- resp ._content = resp ._get_content_decoder ().decode (resp .content )
41
+ # assert not hasattr(resp, "_decoder")
42
+ if not hasattr (resp , "_decoder" ):
43
+ # Retrieve the content, but without decoding it.
44
+ with patch .dict (resp .headers , {"Content-Encoding" : "" }):
45
+ if aread :
46
+ await resp .aread ()
47
+ else :
48
+ resp .read ()
49
+
50
+ result = {
51
+ "status" : {"code" : resp .status_code , "message" : resp .reason_phrase },
52
+ "headers" : _transform_headers (resp ),
53
+ "body" : {"string" : resp .content },
54
+ }
55
+
56
+ # As the content wasn't decoded, we restore the response to a state which
57
+ # will be capable of decoding the content for the consumer.
58
+ del resp ._decoder
59
+ resp ._content = resp ._get_content_decoder ().decode (resp .content )
60
+ else :
61
+ with patch .dict (resp .headers , {"Content-Encoding" : "" }):
62
+ result = {
63
+ "status" : {"code" : resp .status_code , "message" : resp .reason_phrase },
64
+ "headers" : _transform_headers (resp ),
65
+ "body" : {"string" : resp .content },
66
+ }
67
+
60
68
return result
61
69
62
70
0 commit comments