Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
notes-to-self: fix table in how-does-windows-so-reuseaddr-work.py
- Generate the table headers dynamically. Prior to this change the table headers were static and incorrect, 'specific' and 'wildcard' labels were reversed. Example from before the change (incorrect): ~~~ | default | | specific| wildcard| --------------------- default | wildcard | INUSE | Success | default | wildcard | Success | INUSE | ~~~ Example from after the change (correct): ~~~ | default | | wildcard | specific | ----------------------- default | wildcard | INUSE | Success | default | wildcard | Success | INUSE | ~~~ Bug: python-trio#928 (comment) Closes #xxxx
- Loading branch information