Closed
Description
These functions (docs) take a deadline=
argument, which is defined relative to the current clock. That in turn means that there's never a good reason to pass a constant, but it's pretty easy to write nonsense without realizing:
with trio.fail_after(5): ... # OK
with trio.fail_at(5): ... # complete nonsense!
...but happily, it's also the kind of thing which is very easy to lint for.