]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
remove `chunk_size` from api docs for `iter_lines` variants (#2464)
authorSimon K <jackofspaces@gmail.com>
Tue, 29 Nov 2022 15:55:38 +0000 (15:55 +0000)
committerGitHub <noreply@github.com>
Tue, 29 Nov 2022 15:55:38 +0000 (15:55 +0000)
Co-authored-by: Tom Christie <tom@tomchristie.com>
docs/api.md

index 3f806b6f296bbe469b429757a3f5ee45afa948d1..ca5c0ba3c987747339c87febfd80831ed216ca9a 100644 (file)
 * `def .iter_raw([chunk_size])` - **bytes iterator**
 * `def .iter_bytes([chunk_size])` - **bytes iterator**
 * `def .iter_text([chunk_size])` - **text iterator**
-* `def .iter_lines([chunk_size])` - **text iterator**
+* `def .iter_lines()` - **text iterator**
 * `def .close()` - **None**
 * `def .next()` - **Response**
 * `def .aread()` - **bytes**
 * `def .aiter_raw([chunk_size])` - **async bytes iterator**
 * `def .aiter_bytes([chunk_size])` - **async bytes iterator**
 * `def .aiter_text([chunk_size])` - **async text iterator**
-* `def .aiter_lines([chunk_size])` - **async text iterator**
+* `def .aiter_lines()` - **async text iterator**
 * `def .aclose()` - **None**
 * `def .anext()` - **Response**