Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
added Pool to public api
  • Loading branch information
rugleb committed Nov 29, 2020
commit b2fed2f452a5d558ce9de12bd6d609b7711da69e
4 changes: 2 additions & 2 deletions asyncpg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@

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


__all__ = ('connect', 'create_pool', 'Record', 'Connection') + \
__all__ = ('connect', 'create_pool', 'Pool', 'Record', 'Connection') + \
exceptions.__all__ # NOQA

# The rules of changing __version__:
Expand Down