Commit b4ec3620 authored by Bram's avatar Bram Committed by Miss Islington (bot)

bpo-34613: document the correct value of limit argument of asyncio.StreamReader (GH-9121)

The default value of asyncio.StreamReader *limit* is `_DEFAULT_LIMIT` instead of `None`.

<!-- issue-number: [bpo-34613](https://www.bugs.python.org/issue34613) -->
https://bugs.python.org/issue34613
<!-- /issue-number -->
parent b7d613fc
......@@ -146,10 +146,12 @@ and work with streams:
StreamReader
============
.. class:: StreamReader(limit=None, loop=None)
.. class:: StreamReader(limit=_DEFAULT_LIMIT, loop=None)
This class is :ref:`not thread safe <asyncio-multithreading>`.
The *limit* argument's default value is set to _DEFAULT_LIMIT which is 2**16 (64 KiB)
.. method:: exception()
Get the exception.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment