summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/orm/util.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2019-01-15 10:49:36 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2019-01-15 10:49:36 -0500
commit885f15a306efc4c907ca82fa13871992ee556466 (patch)
treeb0a483144c7bffd479691dfcb47a7f45a666a619 /lib/sqlalchemy/orm/util.py
parenta7d6cb13ac96f2abc9366f5ed26fd91cd69ac7cd (diff)
downloadsqlalchemy-885f15a306efc4c907ca82fa13871992ee556466.tar.gz
Remove version directives for 0.6, 0.7, 0.8
- fix a few "seealso"s - ComparableProprerty's "superseded in 0.7" becomes deprecated in 0.7 Backport to currently maintained doc versions 1.2, 1.1 Change-Id: Ib1fcb2df8673dbe5c4ffc47f3896a60d1dfcb4b2
Diffstat (limited to 'lib/sqlalchemy/orm/util.py')
-rw-r--r--lib/sqlalchemy/orm/util.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/sqlalchemy/orm/util.py b/lib/sqlalchemy/orm/util.py
index 46f200d0d..6c565c2e6 100644
--- a/lib/sqlalchemy/orm/util.py
+++ b/lib/sqlalchemy/orm/util.py
@@ -769,9 +769,6 @@ def aliased(element, alias=None, name=None, flat=False, adapt_on_names=False):
wouldn't have any "column correspondence" to the actual
``UnitPrice.price`` column as it is not a proxy of the original.
- .. versionadded:: 0.7.3
-
-
"""
if isinstance(element, expression.FromClause):
if adapt_on_names:
@@ -1163,8 +1160,6 @@ def was_deleted(object_):
This is regardless of whether or not the object is
persistent or detached.
- .. versionadded:: 0.8.0
-
.. seealso::
:attr:`.InstanceState.was_deleted`
@@ -1236,9 +1231,6 @@ def randomize_unitofwork():
This utility is also available when running the test suite via the
``--reversetop`` flag.
- .. versionadded:: 0.8.1 created a standalone version of the
- ``--reversetop`` feature.
-
"""
from sqlalchemy.orm import unitofwork, session, mapper, dependency
from sqlalchemy.util import topological