From: Federico Caselli Date: Mon, 17 Feb 2025 20:11:50 +0000 (+0100) Subject: Include status in the Pool docs X-Git-Tag: rel_2_0_39~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dae5c618f378db2f10b9f4c332071319e909c69b;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Include status in the Pool docs Change-Id: I0a4bfc10f4cd0b7dbd3bf49e0575048b622fa4e8 (cherry picked from commit 890d5873397577865f5012319cdb4db9f793f98c) --- diff --git a/lib/sqlalchemy/pool/base.py b/lib/sqlalchemy/pool/base.py index 34d0225439..32fdc414a7 100644 --- a/lib/sqlalchemy/pool/base.py +++ b/lib/sqlalchemy/pool/base.py @@ -468,6 +468,7 @@ class Pool(log.Identified, event.EventTarget): raise NotImplementedError() def status(self) -> str: + """Returns a brief description of the state of this pool.""" raise NotImplementedError()