Re-added `pydle.Future` and `pydle.coroutine`

- just forward-references to asyncio
This commit is contained in:
Orion (Theunkn0wn1) 2018-12-22 13:25:34 -08:00
parent 3e1aa27a1f
commit dba843f022
No known key found for this signature in database
GPG Key ID: A929E17B5504016C
1 changed files with 3 additions and 0 deletions

View File

@ -4,6 +4,9 @@ from .client import Error, NotInChannel, AlreadyInChannel, BasicClient, ClientPo
from .features.ircv3.cap import NEGOTIATING as CAPABILITY_NEGOTIATING, FAILED as CAPABILITY_FAILED, \
NEGOTIATED as CAPABILITY_NEGOTIATED
# noinspection PyUnresolvedReferences
from asyncio import coroutine, Future
__name__ = 'pydle'
__version__ = '0.8.2'
__version_info__ = (0, 8, 2)