Changes between Initial Version and Version 1 of Ticket #34392, comment 6
- Timestamp:
- May 19, 2023, 7:32:13 AM (18 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34392, comment 6
initial v1 29 29 That is, calling `list` (or `join`, in the case at hand here) on the response itself allows accessing the content, where doing the same on `streaming_content` does not. 30 30 31 `getvalue()` is currently going via `streaming_content` and so (currently) would hit the type error here. Moving to `…join(self)` would resolve that, at the cost of the warning which would need to be captured .31 `getvalue()` is currently going via `streaming_content` and so (currently) would hit the type error here. Moving to `…join(self)` would resolve that, at the cost of the warning which would need to be captured, in `ClientMixin`. 32 32 33 33 Make sense?