633
638
def read_streamed_body(self):
634
639
"""Read bytes from the body, decoding into a byte stream.
636
644
_body_decoder = ChunkedBodyDecoder()
637
645
while not _body_decoder.finished_reading:
639
647
bytes = self._request.read_bytes(bytes_wanted)
640
648
_body_decoder.accept_bytes(bytes)
641
649
for body_bytes in iter(_body_decoder.read_next_chunk, None):