bpo-33649: Add high-level APIs cheat-sheet (GH-9319)

This commit is contained in:
Yury Selivanov 2018-09-14 15:11:24 -07:00 committed by GitHub
parent 6c7316439d
commit 7372c3bbef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 229 additions and 6 deletions

View file

@ -10,6 +10,8 @@ Streams are high-level async/await-ready primitives to work with
network connections. Streams allow sending and receiving data without
using callbacks or low-level protocols and transports.
.. _asyncio_example_stream:
Here is an example of a TCP echo client written using asyncio
streams::