summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2019-09-13 12:18:46 (GMT)
committerGitHub <noreply@github.com>2019-09-13 12:18:46 (GMT)
commit9eb35ab0d71a6bd680e84fa0f828cb634e72b681 (patch)
tree7f088d5fc06a77bb0450d33a06242e8a32c92794 /Misc
parentff2e18286560e981f4e09afb0d2448ea994414d8 (diff)
downloadcpython-9eb35ab0d71a6bd680e84fa0f828cb634e72b681.zip
cpython-9eb35ab0d71a6bd680e84fa0f828cb634e72b681.tar.gz
cpython-9eb35ab0d71a6bd680e84fa0f828cb634e72b681.tar.bz2
bpo-38148: Add slots to asyncio transports (GH-16077)
* bpo-38148: Add slots to asyncio transports * Update Misc/NEWS.d/next/Library/2019-09-13-08-55-43.bpo-38148.Lnww6D.rst Co-Authored-By: Kyle Stanley <aeros167@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-09-13-08-55-43.bpo-38148.Lnww6D.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-09-13-08-55-43.bpo-38148.Lnww6D.rst b/Misc/NEWS.d/next/Library/2019-09-13-08-55-43.bpo-38148.Lnww6D.rst
new file mode 100644
index 0000000..88c0809
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-09-13-08-55-43.bpo-38148.Lnww6D.rst
@@ -0,0 +1 @@
+Add slots to :mod:`asyncio` transport classes, which can reduce memory usage.