diff --git a/asyncpg/__init__.py b/asyncpg/__init__.py index 49d1e8a4..01af7904 100644 --- a/asyncpg/__init__.py +++ b/asyncpg/__init__.py @@ -7,7 +7,7 @@ from .connection import connect, Connection # NOQA from .exceptions import * # NOQA -from .pool import create_pool # NOQA +from .pool import create_pool, Pool # NOQA from .protocol import Record # NOQA from .types import * # NOQA @@ -15,5 +15,7 @@ from ._version import __version__ # NOQA -__all__ = ('connect', 'create_pool', 'Record', 'Connection') + \ - exceptions.__all__ # NOQA +__all__ = ( + ('connect', 'create_pool', 'Pool', 'Record', 'Connection') + + exceptions.__all__ # NOQA +)
Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.
Alternative Proxies: