summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/asyncio/tasks.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/asyncio/tasks.py b/Lib/asyncio/tasks.py
index 3640468..ec04d2f 100644
--- a/Lib/asyncio/tasks.py
+++ b/Lib/asyncio/tasks.py
@@ -32,9 +32,7 @@ _DEBUG = False
class CoroWrapper:
- """Wrapper for coroutine in _DEBUG mode."""
-
- __slots__ = ['gen', 'func']
+ __slots__ = ['gen', 'func', '__name__', '__doc__']
def __init__(self, gen, func):
assert inspect.isgenerator(gen), gen