The _FlowControlMixin._set_write_buffer_limits() method computes default
values when only high or low is provided:
- if low is provided and high is None -> high = 4 * low
- if high is provided and low is None -> low = high // 4
- default values are (16 * 1024, 64 * 1024)
These behaviors are currently not explicitly covered by tests.
This issue proposes adding tests to verify the computed write buffer
limit behavior and protect against future regressions.
Linked PRs
The _FlowControlMixin._set_write_buffer_limits() method computes default
values when only
highorlowis provided:These behaviors are currently not explicitly covered by tests.
This issue proposes adding tests to verify the computed write buffer
limit behavior and protect against future regressions.
Linked PRs
asyncio._FlowControlMixin.set_write_buffer_limits#150317