summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/tasks.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-07-02 22:59:00 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-07-02 22:59:00 (GMT)
commit2dba23af7145f3edc608dc16209e6ead38c0f6c8 (patch)
tree0eec0e78f459221e1c2d269351d7b9e4aa5755ff /Lib/asyncio/tasks.py
parente10920f0d1009ea33ce4b35b015a928b33a80867 (diff)
downloadcpython-2dba23af7145f3edc608dc16209e6ead38c0f6c8.zip
cpython-2dba23af7145f3edc608dc16209e6ead38c0f6c8.tar.gz
cpython-2dba23af7145f3edc608dc16209e6ead38c0f6c8.tar.bz2
asyncio: sync with Tulip
* _UnixSubprocessTransport: fix file mode of stdin. Open stdin in write mode, not in read mode * Examples: close the event loop at exit * More reliable CoroWrapper.__del__. If the constructor is interrupted by KeyboardInterrupt or the coroutine objet is destroyed lately, some the _source_traceback attribute doesn't exist anymore. * repr(Task): include also the future the task is waiting for
Diffstat (limited to 'Lib/asyncio/tasks.py')
-rw-r--r--Lib/asyncio/tasks.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/asyncio/tasks.py b/Lib/asyncio/tasks.py
index e9adf1d..dd191e7 100644
--- a/Lib/asyncio/tasks.py
+++ b/Lib/asyncio/tasks.py
@@ -109,6 +109,9 @@ class Task(futures.Future):
if self._callbacks:
info.append(self._format_callbacks())
+ if self._fut_waiter is not None:
+ info.append('wait_for=%r' % self._fut_waiter)
+
return '<%s %s>' % (self.__class__.__name__, ' '.join(info))
def get_stack(self, *, limit=None):