summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/_dml_constructors.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2022-06-04 15:53:34 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2022-06-07 12:25:19 -0400
commit1c99edf1b988f55411bd8bef917b9664a39d218b (patch)
tree44789fc7380c469738ec15627e872bf3440e2a1b /lib/sqlalchemy/sql/_dml_constructors.py
parentcdafd5bb865e867660238b61e727d33ef6f42b37 (diff)
downloadsqlalchemy-1c99edf1b988f55411bd8bef917b9664a39d218b.tar.gz
migrate labels to new tutorial
other org changes and some sections from old tutorial ported to new tutorial. Change-Id: Ic0fba60ec82fff481890887beef9ed0fa271875a
Diffstat (limited to 'lib/sqlalchemy/sql/_dml_constructors.py')
-rw-r--r--lib/sqlalchemy/sql/_dml_constructors.py16
1 files changed, 1 insertions, 15 deletions
diff --git a/lib/sqlalchemy/sql/_dml_constructors.py b/lib/sqlalchemy/sql/_dml_constructors.py
index 926e5257b..293d225f9 100644
--- a/lib/sqlalchemy/sql/_dml_constructors.py
+++ b/lib/sqlalchemy/sql/_dml_constructors.py
@@ -35,9 +35,6 @@ def insert(table: _DMLTableArgument) -> Insert:
.. seealso::
- :ref:`coretutorial_insert_expressions` - in the
- :ref:`1.x tutorial <sqlexpression_toplevel>`
-
:ref:`tutorial_core_insert` - in the :ref:`unified_tutorial`
@@ -79,9 +76,7 @@ def insert(table: _DMLTableArgument) -> Insert:
.. seealso::
- :ref:`coretutorial_insert_expressions` - SQL Expression Tutorial
-
- :ref:`inserts_and_updates` - SQL Expression Tutorial
+ :ref:`tutorial_core_insert` - in the :ref:`unified_tutorial`
"""
return Insert(table)
@@ -104,15 +99,6 @@ def update(table: _DMLTableArgument) -> Update:
:meth:`_expression.TableClause.update` method on
:class:`_schema.Table`.
- .. seealso::
-
- :ref:`inserts_and_updates` - in the
- :ref:`1.x tutorial <sqlexpression_toplevel>`
-
- :ref:`tutorial_core_update_delete` - in the :ref:`unified_tutorial`
-
-
-
:param table: A :class:`_schema.Table`
object representing the database
table to be updated.