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