You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+33-33
Original file line number
Diff line number
Diff line change
@@ -24,47 +24,47 @@ pip install flake8-async
24
24
25
25
## List of warnings
26
26
27
-
-**TRIO100**: A `with trio.fail_after(...):` or `with trio.move_on_after(...):`
27
+
-**ASYNC100**: A `with trio.fail_after(...):` or `with trio.move_on_after(...):`
28
28
context does not contain any `await` statements. This makes it pointless, as
29
29
the timeout can only be triggered by a checkpoint.
30
-
-**TRIO101**: `yield` inside a nursery or cancel scope is only safe when implementing a context manager - otherwise, it breaks exception handling.
31
-
-**TRIO102**: It's unsafe to await inside `finally:` or `except BaseException/trio.Cancelled` unless you use a shielded
30
+
-**ASYNC101**: `yield` inside a nursery or cancel scope is only safe when implementing a context manager - otherwise, it breaks exception handling.
31
+
-**ASYNC102**: It's unsafe to await inside `finally:` or `except BaseException/trio.Cancelled` unless you use a shielded
32
32
cancel scope with a timeout.
33
-
-**TRIO103**: `except BaseException`, `except trio.Cancelled` or a bare `except:` with a code path that doesn't re-raise. If you don't want to re-raise `BaseException`, add a separate handler for `trio.Cancelled` before.
34
-
-**TRIO104**: `Cancelled` and `BaseException` must be re-raised - when a user tries to `return` or `raise` a different exception.
35
-
-**TRIO105**: Calling a trio async function without immediately `await`ing it.
36
-
-**TRIO106**: `trio`/`anyio` must be imported with `import trio`/`import anyio` for the linter to work.
37
-
-**TRIO107**: Renamed to TRIO910
38
-
-**TRIO108**: Renamed to TRIO911
39
-
-**TRIO109**: Async function definition with a `timeout` parameter - use `trio.[fail/move_on]_[after/at]` instead
40
-
-**TRIO110**: `while <condition>: await trio.sleep()` should be replaced by a `trio.Event`.
41
-
-**TRIO111**: Variable, from context manager opened inside nursery, passed to `start[_soon]` might be invalidly accessed while in use, due to context manager closing before the nursery. This is usually a bug, and nurseries should generally be the inner-most context manager.
42
-
-**TRIO112**: Nursery body with only a call to `nursery.start[_soon]` and not passing itself as a parameter can be replaced with a regular function call.
43
-
-**TRIO113**: Using `nursery.start_soon` in `__aenter__` doesn't wait for the task to begin. Consider replacing with `nursery.start`.
44
-
-**TRIO114**: Startable function (i.e. has a `task_status` keyword parameter) not in `--startable-in-context-manager` parameter list, please add it so TRIO113 can catch errors when using it.
45
-
-**TRIO115**: Replace `trio.sleep(0)` with the more suggestive `trio.lowlevel.checkpoint()`.
46
-
-**TRIO116**: `trio.sleep()` with >24 hour interval should usually be `trio.sleep_forever()`.
47
-
-**TRIO117**: Don't raise or catch `trio.[NonBase]MultiError`, prefer `[exceptiongroup.]BaseExceptionGroup`. Even if Trio still raises `MultiError` for legacy code, it can be caught with `BaseExceptionGroup` so it's fully redundant.
48
-
-**TRIO118**: Don't assign the value of `anyio.get_cancelled_exc_class()` to a variable, since that breaks linter checks and multi-backend programs.
33
+
-**ASYNC103**: `except BaseException`, `except trio.Cancelled` or a bare `except:` with a code path that doesn't re-raise. If you don't want to re-raise `BaseException`, add a separate handler for `trio.Cancelled` before.
34
+
-**ASYNC104**: `Cancelled` and `BaseException` must be re-raised - when a user tries to `return` or `raise` a different exception.
35
+
-**ASYNC105**: Calling a trio async function without immediately `await`ing it.
36
+
-**ASYNC106**: `trio`/`anyio` must be imported with `import trio`/`import anyio` for the linter to work.
37
+
-**ASYNC107**: Renamed to ASYNC910
38
+
-**ASYNC108**: Renamed to ASYNC911
39
+
-**ASYNC109**: Async function definition with a `timeout` parameter - use `trio.[fail/move_on]_[after/at]` instead
40
+
-**ASYNC110**: `while <condition>: await trio.sleep()` should be replaced by a `trio.Event`.
41
+
-**ASYNC111**: Variable, from context manager opened inside nursery, passed to `start[_soon]` might be invalidly accessed while in use, due to context manager closing before the nursery. This is usually a bug, and nurseries should generally be the inner-most context manager.
42
+
-**ASYNC112**: Nursery body with only a call to `nursery.start[_soon]` and not passing itself as a parameter can be replaced with a regular function call.
43
+
-**ASYNC113**: Using `nursery.start_soon` in `__aenter__` doesn't wait for the task to begin. Consider replacing with `nursery.start`.
44
+
-**ASYNC114**: Startable function (i.e. has a `task_status` keyword parameter) not in `--startable-in-context-manager` parameter list, please add it so ASYNC113 can catch errors when using it.
45
+
-**ASYNC115**: Replace `trio.sleep(0)` with the more suggestive `trio.lowlevel.checkpoint()`.
46
+
-**ASYNC116**: `trio.sleep()` with >24 hour interval should usually be `trio.sleep_forever()`.
47
+
-**ASYNC117**: Don't raise or catch `trio.[NonBase]MultiError`, prefer `[exceptiongroup.]BaseExceptionGroup`. Even if Trio still raises `MultiError` for legacy code, it can be caught with `BaseExceptionGroup` so it's fully redundant.
48
+
-**ASYNC118**: Don't assign the value of `anyio.get_cancelled_exc_class()` to a variable, since that breaks linter checks and multi-backend programs.
49
49
50
50
### Warnings for blocking sync calls in async functions
51
-
-**TRIO200**: User-configured error for blocking sync calls in async functions. Does nothing by default, see [`trio200-blocking-calls`](#trio200-blocking-calls) for how to configure it.
52
-
-**TRIO210**: Sync HTTP call in async function, use `httpx.AsyncClient`.
53
-
-**TRIO211**: Likely sync HTTP call in async function, use `httpx.AsyncClient`. Looks for `urllib3` method calls on pool objects, but only matching on the method signature and not the object.
54
-
-**TRIO212**: Blocking sync HTTP call on httpx object, use httpx.AsyncClient.
55
-
-**TRIO220**: Sync process call in async function, use `await nursery.start(trio.run_process, ...)`.
56
-
-**TRIO221**: Sync process call in async function, use `await trio.run_process(...)`.
57
-
-**TRIO222**: Sync `os.*` call in async function, wrap in `await trio.to_thread.run_sync()`.
58
-
-**TRIO230**: Sync IO call in async function, use `trio.open_file(...)`.
59
-
-**TRIO231**: Sync IO call in async function, use `trio.wrap_file(...)`.
60
-
-**TRIO232**: Blocking sync call on file object, wrap the file object in `trio.wrap_file()` to get an async file object.
61
-
-**TRIO240**: Avoid using `os.path` in async functions, prefer using `trio.Path` objects.
51
+
-**ASYNC200**: User-configured error for blocking sync calls in async functions. Does nothing by default, see [`trio200-blocking-calls`](#trio200-blocking-calls) for how to configure it.
52
+
-**ASYNC210**: Sync HTTP call in async function, use `httpx.AsyncClient`.
53
+
-**ASYNC211**: Likely sync HTTP call in async function, use `httpx.AsyncClient`. Looks for `urllib3` method calls on pool objects, but only matching on the method signature and not the object.
54
+
-**ASYNC212**: Blocking sync HTTP call on httpx object, use httpx.AsyncClient.
55
+
-**ASYNC220**: Sync process call in async function, use `await nursery.start(trio.run_process, ...)`.
56
+
-**ASYNC221**: Sync process call in async function, use `await trio.run_process(...)`.
57
+
-**ASYNC222**: Sync `os.*` call in async function, wrap in `await trio.to_thread.run_sync()`.
58
+
-**ASYNC230**: Sync IO call in async function, use `trio.open_file(...)`.
59
+
-**ASYNC231**: Sync IO call in async function, use `trio.wrap_file(...)`.
60
+
-**ASYNC232**: Blocking sync call on file object, wrap the file object in `trio.wrap_file()` to get an async file object.
61
+
-**ASYNC240**: Avoid using `os.path` in async functions, prefer using `trio.Path` objects.
62
62
63
63
64
64
### Warnings disabled by default
65
-
-**TRIO900**: Async generator without `@asynccontextmanager` not allowed.
66
-
-**TRIO910**: Exit or `return` from async function with no guaranteed checkpoint or exception since function definition.
67
-
-**TRIO911**: Exit, `yield` or `return` from async iterable with no guaranteed checkpoint since possible function entry (yield or function definition)
65
+
-**ASYNC900**: Async generator without `@asynccontextmanager` not allowed.
66
+
-**ASYNC910**: Exit or `return` from async function with no guaranteed checkpoint or exception since function definition.
67
+
-**ASYNC911**: Exit, `yield` or `return` from async iterable with no guaranteed checkpoint since possible function entry (yield or function definition)
68
68
Checkpoints are `await`, `async for`, and `async with` (on one of enter/exit).
0 commit comments