Hi, thanks for maintaining this great library.
I noticed a docs/behavior mismatch around reuse_address.
Before 2.9.0, reuse_address defaulted to None, so omitting it preserved asyncio default behavior.
However, the default value was later changed to False, so reuse is now explicitly disabled unless requested.
This seems to have happened when type annotations were added: https://github.com/ronf/asyncssh/compare/v2.8.1...v2.9.0.patch
And the docs still say:
If not specified, this will be automatically set to True on UNIX.
Since this behavior has existed for a while, maybe this should be treated as a docs issue rather than a regression.
Hi, thanks for maintaining this great library.
I noticed a docs/behavior mismatch around
reuse_address.Before 2.9.0,
reuse_addressdefaulted toNone, so omitting it preserved asyncio default behavior.However, the default value was later changed to
False, so reuse is now explicitly disabled unless requested.This seems to have happened when type annotations were added: https://github.com/ronf/asyncssh/compare/v2.8.1...v2.9.0.patch
And the docs still say:
Since this behavior has existed for a while, maybe this should be treated as a docs issue rather than a regression.