]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Document that iter_* methods are synchronous (#807)
authorColin Bounouar <Colin-b@users.noreply.github.com>
Thu, 6 Feb 2020 12:40:42 +0000 (13:40 +0100)
committerGitHub <noreply@github.com>
Thu, 6 Feb 2020 12:40:42 +0000 (13:40 +0100)
docs/api.md

index b01def1464a711a06c19957a23b75c917801e501..3889d8cf67835912d2b993f80e600275fc240ba1 100644 (file)
 * `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**