asyncio: Reincarnate CoroWrapper's docstring as a comment.

This commit is contained in:
Guido van Rossum 2014-01-16 11:05:23 -08:00
parent 59759ff234
commit e1f554490d

View file

@ -32,6 +32,8 @@ _DEBUG = False
class CoroWrapper:
# Wrapper for coroutine in _DEBUG mode.
__slots__ = ['gen', 'func', '__name__', '__doc__']
def __init__(self, gen, func):