summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/ext/mutable.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/ext/mutable.py
parent53be3fc70a44d34fda1ffddcf9d67473d3de50b4 (diff)
parentee7e49964fcf13ed0f5a3541b81f00302a9db29a (diff)
downloadsqlalchemy-b066c45dc491716a4e34bdeb9a9726bcbc136fb5.tar.gz
Merge "Remove old versionadded and versionchanged" into main
Diffstat (limited to 'lib/sqlalchemy/ext/mutable.py')
-rw-r--r--lib/sqlalchemy/ext/mutable.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/sqlalchemy/ext/mutable.py b/lib/sqlalchemy/ext/mutable.py
index 0dd321559..7d23f9fda 100644
--- a/lib/sqlalchemy/ext/mutable.py
+++ b/lib/sqlalchemy/ext/mutable.py
@@ -469,8 +469,6 @@ class MutableBase:
of attribute names that have been refreshed; the list is compared
against this set to determine if action needs to be taken.
- .. versionadded:: 1.0.5
-
"""
return {attribute.key}
@@ -880,8 +878,6 @@ class MutableList(Mutable, List[_T]):
coercion to the values placed in the dictionary so that they too are
"mutable", and emit events up to their parent structure.
- .. versionadded:: 1.1
-
.. seealso::
:class:`.MutableDict`
@@ -986,8 +982,6 @@ class MutableSet(Mutable, Set[_T]):
coercion to the values placed in the dictionary so that they too are
"mutable", and emit events up to their parent structure.
- .. versionadded:: 1.1
-
.. seealso::
:class:`.MutableDict`