summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/util
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/util
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/util')
-rw-r--r--lib/sqlalchemy/util/_collections.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/sqlalchemy/util/_collections.py b/lib/sqlalchemy/util/_collections.py
index fc6a728ce..75e1727df 100644
--- a/lib/sqlalchemy/util/_collections.py
+++ b/lib/sqlalchemy/util/_collections.py
@@ -65,11 +65,6 @@ class KeyedTuple(AbstractKeyedTuple):
and performance overhead, which is not necessary for the
:class:`.Query` object's use case.
- .. versionchanged:: 0.8
- Compatibility methods with ``collections.namedtuple()`` have been
- added including :attr:`.KeyedTuple._fields` and
- :meth:`.KeyedTuple._asdict`.
-
.. seealso::
:ref:`ormtutorial_querying`
@@ -91,8 +86,6 @@ class KeyedTuple(AbstractKeyedTuple):
This method provides compatibility with ``collections.namedtuple()``.
- .. versionadded:: 0.8
-
.. seealso::
:meth:`.KeyedTuple.keys`
@@ -109,8 +102,6 @@ class KeyedTuple(AbstractKeyedTuple):
This method provides compatibility with ``collections.namedtuple()``,
with the exception that the dictionary returned is **not** ordered.
- .. versionadded:: 0.8
-
"""
return {key: self.__dict__[key] for key in self.keys()}