summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-01-30 01:35:14 +0100
committerVictor Stinner <victor.stinner@gmail.com>2015-01-30 01:35:14 +0100
commit188f2c0b75c69cfbe082f1eca2ed8f8a04fa1718 (patch)
treefed517cf76bee4ae14d6b8624241e91c4f64e433
parentf2e43cbbd4b9325da638a6b45b52e766ca91b131 (diff)
downloadcpython-git-188f2c0b75c69cfbe082f1eca2ed8f8a04fa1718.tar.gz
asyncio doc: document the new ResourceWarning warnings
-rw-r--r--Doc/library/asyncio-dev.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst
index 72a06f538e..ce1275b4e0 100644
--- a/Doc/library/asyncio-dev.rst
+++ b/Doc/library/asyncio-dev.rst
@@ -372,3 +372,14 @@ traceback where the task was created. Example of log in debug mode::
:ref:`Detect coroutine objects never scheduled <asyncio-coroutine-not-scheduled>`.
+
+Close transports
+----------------
+
+When a transport is no more needed, call its ``close()`` method to release
+resources.
+
+If a transport (or an event loop) is not closed explicitly, a
+:exc:`ResourceWarning` warning will be emitted in its destructor. The
+:exc:`ResourceWarning` warnings are hidden by default: use the ``-Wd`` command
+line option of Python to show them.