Skip to content

Commit 6757386

Browse files
authored
Removing iocp mentions from documentation (#692)
1 parent 77468df commit 6757386

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Options:
3939
--workers INTEGER Number of worker processes. Defaults to the
4040
$WEB_CONCURRENCY environment variable if
4141
available. Not valid with --reload.
42-
--loop [auto|asyncio|uvloop|iocp]
42+
--loop [auto|asyncio|uvloop]
4343
Event loop implementation. [default: auto]
4444
--http [auto|h11|httptools] HTTP protocol implementation. [default:
4545
auto]

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Options:
9090
--workers INTEGER Number of worker processes. Defaults to the
9191
$WEB_CONCURRENCY environment variable if
9292
available. Not valid with --reload.
93-
--loop [auto|asyncio|uvloop|iocp]
93+
--loop [auto|asyncio|uvloop]
9494
Event loop implementation. [default: auto]
9595
--http [auto|h11|httptools] HTTP protocol implementation. [default:
9696
auto]

docs/settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ $ pip install uvicorn[watchgodreload]
4040

4141
## Implementation
4242

43-
* `--loop <str>` - Set the event loop implementation. The uvloop implementation provides greater performance, but is not compatible with Windows or PyPy. But you can use IOCP in windows. **Options:** *'auto', 'asyncio', 'uvloop', 'iocp'.* **Default:** *'auto'*.
43+
* `--loop <str>` - Set the event loop implementation. The uvloop implementation provides greater performance, but is not compatible with Windows or PyPy. **Options:** *'auto', 'asyncio', 'uvloop'.* **Default:** *'auto'*.
4444
* `--http <str>` - Set the HTTP protocol implementation. The httptools implementation provides greater performance, but it not compatible with PyPy, and requires compilation on Windows. **Options:** *'auto', 'h11', 'httptools'.* **Default:** *'auto'*.
4545
* `--ws <str>` - Set the WebSockets protocol implementation. Either of the `websockets` and `wsproto` packages are supported. Use `'none'` to deny all websocket requests. **Options:** *'auto', 'none', 'websockets', 'wsproto'.* **Default:** *'auto'*.
4646
* `--lifespan <str>` - Set the Lifespan protocol implementation. **Options:** *'auto', 'on', 'off'.* **Default:** *'auto'*.

0 commit comments

Comments
 (0)