Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Always line-buffer stderr for consistency across Python versions
The change in default from block-buffering in ≤3.8 to line-buffering in ≥3.9¹ made a Cram test output vary between Python versions (and thus fail). I could fix the Cram test various ways, but always line-buffering stderr makes sense because we're exclusively using it for messaging/logging. ¹ <https://docs.python.org/3/whatsnew/3.9.html#sys>
- Loading branch information