Skip to content

Commit

Permalink
Make asyncio explicit in spec
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgodwin committed Mar 11, 2018
1 parent 1d612ac commit 6a1912a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions specs/asgi.rst
Expand Up @@ -58,8 +58,8 @@ ASGI consists of two different components:
Like WSGI, the server hosts the application inside it, and dispatches incoming
requests to it in a standardized format. Unlike WSGI, however, applications
are instantiated objects that are fed events rather than simple callables,
and must run as coroutines (on the main thread; they are free to use threading
or other processes if they need synchronous code).
and must run as ``asyncio``-compatible coroutines (on the main thread;
they are free to use threading or other processes if they need synchronous code).

Unlike WSGI, there are two separate parts to an ASGI connection:

Expand Down

0 comments on commit 6a1912a

Please sign in to comment.