summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/engine/reflection.py
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2023-04-12 23:41:19 +0000
committerGerrit Code Review <gerrit@bbpush.zzzcomputing.com>2023-04-12 23:41:19 +0000
commitb066c45dc491716a4e34bdeb9a9726bcbc136fb5 (patch)
treeae40a051b41f73d3587cb1f2785c85e810e89dc7 /lib/sqlalchemy/engine/reflection.py
parent53be3fc70a44d34fda1ffddcf9d67473d3de50b4 (diff)
parentee7e49964fcf13ed0f5a3541b81f00302a9db29a (diff)
downloadsqlalchemy-b066c45dc491716a4e34bdeb9a9726bcbc136fb5.tar.gz
Merge "Remove old versionadded and versionchanged" into main
Diffstat (limited to 'lib/sqlalchemy/engine/reflection.py')
-rw-r--r--lib/sqlalchemy/engine/reflection.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/sqlalchemy/engine/reflection.py b/lib/sqlalchemy/engine/reflection.py
index 6b44704bb..6e1ec18f2 100644
--- a/lib/sqlalchemy/engine/reflection.py
+++ b/lib/sqlalchemy/engine/reflection.py
@@ -513,8 +513,6 @@ class Inspector(inspection.Inspectable["Inspector"]):
foreign key constraint names that would require a separate CREATE
step after-the-fact, based on dependencies between tables.
- .. versionadded:: 1.0.-
-
:param schema: schema name to query, if not the default schema.
:param \**kw: Additional keyword argument to pass to the dialect
specific implementation. See the documentation of the dialect
@@ -630,8 +628,6 @@ class Inspector(inspection.Inspectable["Inspector"]):
specific implementation. See the documentation of the dialect
in use for more information.
- .. versionadded:: 1.0.0
-
"""
with self._operation_context() as conn:
@@ -649,8 +645,6 @@ class Inspector(inspection.Inspectable["Inspector"]):
specific implementation. See the documentation of the dialect
in use for more information.
- .. versionadded:: 1.0.0
-
"""
with self._operation_context() as conn:
return self.dialect.get_temp_view_names(
@@ -1406,8 +1400,6 @@ class Inspector(inspection.Inspectable["Inspector"]):
:return: a list of dictionaries, each representing the
definition of a check constraints.
- .. versionadded:: 1.1.0
-
.. seealso:: :meth:`Inspector.get_multi_check_constraints`
"""