From: Colin Bounouar Date: Thu, 6 Feb 2020 12:40:42 +0000 (+0100) Subject: Document that iter_* methods are synchronous (#807) X-Git-Tag: 0.12.0~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cfe227809649dc97214f8c56943c3df01aa5ed7b;p=thirdparty%2Fhttpx.git Document that iter_* methods are synchronous (#807) --- diff --git a/docs/api.md b/docs/api.md index b01def14..3889d8cf 100644 --- a/docs/api.md +++ b/docs/api.md @@ -62,10 +62,10 @@ * `def .raise_for_status()` - **None** * `def .json()` - **Any** * `def .read()` - **bytes** -* `def .iter_raw()` - **async bytes iterator** -* `def .iter_bytes()` - **async bytes iterator** -* `def .iter_text()` - **async text iterator** -* `def .iter_lines()` - **async text iterator** +* `def .iter_raw()` - **bytes iterator** +* `def .iter_bytes()` - **bytes iterator** +* `def .iter_text()` - **text iterator** +* `def .iter_lines()` - **text iterator** * `def .close()` - **None** * `def .next()` - **Response** * `def .aread()` - **bytes**