mirror of https://github.com/python/cpython
asyncio: Sync with github
This commit is contained in:
parent
9f3c094e68
commit
0013ccedd1
|
@ -93,7 +93,6 @@ class Task(futures.Future):
|
||||||
futures.Future.__del__(self)
|
futures.Future.__del__(self)
|
||||||
|
|
||||||
def _repr_info(self):
|
def _repr_info(self):
|
||||||
# Private method, do not use it.
|
|
||||||
info = super()._repr_info()
|
info = super()._repr_info()
|
||||||
|
|
||||||
if self._must_cancel:
|
if self._must_cancel:
|
||||||
|
@ -222,7 +221,6 @@ class Task(futures.Future):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def _step(self, value=None, exc=None):
|
def _step(self, value=None, exc=None):
|
||||||
# Private method, do not use it.
|
|
||||||
assert not self.done(), \
|
assert not self.done(), \
|
||||||
'_step(): already done: {!r}, {!r}, {!r}'.format(self, value, exc)
|
'_step(): already done: {!r}, {!r}, {!r}'.format(self, value, exc)
|
||||||
if self._must_cancel:
|
if self._must_cancel:
|
||||||
|
@ -286,7 +284,6 @@ class Task(futures.Future):
|
||||||
self = None # Needed to break cycles when an exception occurs.
|
self = None # Needed to break cycles when an exception occurs.
|
||||||
|
|
||||||
def _wakeup(self, future):
|
def _wakeup(self, future):
|
||||||
# Private method, do not use it.
|
|
||||||
try:
|
try:
|
||||||
future.result()
|
future.result()
|
||||||
except Exception as exc:
|
except Exception as exc:
|
||||||
|
|
Loading…
Reference in New Issue