diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2023-04-12 23:41:19 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2023-04-12 23:41:19 +0000 |
| commit | b066c45dc491716a4e34bdeb9a9726bcbc136fb5 (patch) | |
| tree | ae40a051b41f73d3587cb1f2785c85e810e89dc7 /lib/sqlalchemy/engine/interfaces.py | |
| parent | 53be3fc70a44d34fda1ffddcf9d67473d3de50b4 (diff) | |
| parent | ee7e49964fcf13ed0f5a3541b81f00302a9db29a (diff) | |
| download | sqlalchemy-b066c45dc491716a4e34bdeb9a9726bcbc136fb5.tar.gz | |
Merge "Remove old versionadded and versionchanged" into main
Diffstat (limited to 'lib/sqlalchemy/engine/interfaces.py')
| -rw-r--r-- | lib/sqlalchemy/engine/interfaces.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/sqlalchemy/engine/interfaces.py b/lib/sqlalchemy/engine/interfaces.py index 9952a85e3..254aba4bc 100644 --- a/lib/sqlalchemy/engine/interfaces.py +++ b/lib/sqlalchemy/engine/interfaces.py @@ -1043,8 +1043,6 @@ class Dialect(EventTarget): here is so that third-party dialects that haven't yet implemented this feature continue to function in the old way. - .. versionadded:: 0.9.2 - .. seealso:: :class:`.DialectKWArgs` - implementing base class which consumes @@ -1621,8 +1619,6 @@ class Dialect(EventTarget): This is an internal dialect method. Applications should use :meth:`.Inspector.get_check_constraints`. - .. versionadded:: 1.1.0 - """ raise NotImplementedError() @@ -2511,8 +2507,6 @@ class Dialect(EventTarget): By default this just returns the cls. - .. versionadded:: 1.0.3 - """ return cls @@ -2579,8 +2573,6 @@ class Dialect(EventTarget): events to the engine or its components. In particular, it allows a dialect-wrapping class to apply dialect-level events. - .. versionadded:: 1.0.3 - """ def get_driver_connection(self, connection: DBAPIConnection) -> Any: @@ -2803,8 +2795,6 @@ class CreateEnginePlugin: changes can be made to the engine, most typically involving setup of events (e.g. those defined in :ref:`core_event_toplevel`). - .. versionadded:: 1.1 - """ # noqa: E501 def __init__(self, url: URL, kwargs: Dict[str, Any]): @@ -3290,8 +3280,6 @@ class ExceptionContext: the invalidation of other connections in the pool is to be performed based on other conditions, or even on a per-connection basis. - .. versionadded:: 1.0.3 - """ is_pre_ping: bool |
