summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/engine/interfaces.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/engine/interfaces.py')
-rw-r--r--lib/sqlalchemy/engine/interfaces.py12
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