Method
transform_first_chunk
(
self,
status_code: int,
headers: httputil.HTTPHeaders,
chunk: bytes,
finishing: bool,
)
Source from the content-addressed store, hash-verified
| 3070 | pass |
| 3071 | |
| 3072 | def transform_first_chunk( |
| 3073 | self, |
| 3074 | status_code: int, |
| 3075 | headers: httputil.HTTPHeaders, |
| 3076 | chunk: bytes, |
| 3077 | finishing: bool, |
| 3078 | ) -> Tuple[int, httputil.HTTPHeaders, bytes]: |
| 3079 | return status_code, headers, chunk |
| 3080 | |
| 3081 | def transform_chunk(self, chunk: bytes, finishing: bool) -> bytes: |
| 3082 | return chunk |
Tested by
no test coverage detected