Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions stubs/psycopg2/psycopg2/pool.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ from _typeshed import ConvertibleToInt
from collections.abc import Hashable

import psycopg2
from psycopg2.extensions import connection

class PoolError(psycopg2.Error): ...

Expand All @@ -12,13 +13,13 @@ class AbstractConnectionPool:
def __init__(self, minconn: ConvertibleToInt, maxconn: ConvertibleToInt, *args, **kwargs) -> None: ...
# getconn, putconn and closeall are officially documented as methods of the
# abstract base class, but in reality, they only exist on the children classes
def getconn(self, key: Hashable | None = None): ...
def putconn(self, conn, key: Hashable | None = None, close: bool = False) -> None: ...
def getconn(self, key: Hashable | None = None) -> connection: ...
def putconn(self, conn: connection, key: Hashable | None = None, close: bool = False) -> None: ...
def closeall(self) -> None: ...

class SimpleConnectionPool(AbstractConnectionPool): ...

class ThreadedConnectionPool(AbstractConnectionPool):
# This subclass has a default value for conn which doesn't exist
# in the SimpleConnectionPool class, nor in the documentation
def putconn(self, conn=None, key: Hashable | None = None, close: bool = False) -> None: ...
def putconn(self, conn: connection | None = None, key: Hashable | None = None, close: bool = False) -> None: ...
Loading