summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/selectable.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/sql/selectable.py')
-rw-r--r--lib/sqlalchemy/sql/selectable.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqlalchemy/sql/selectable.py b/lib/sqlalchemy/sql/selectable.py
index 79e341b77..ab8b6667c 100644
--- a/lib/sqlalchemy/sql/selectable.py
+++ b/lib/sqlalchemy/sql/selectable.py
@@ -1208,7 +1208,7 @@ class ForUpdateArg(ClauseElement):
def __init__(self, nowait=False, read=False, of=None):
"""Represents arguments specified to :meth:`.Select.for_update`.
- .. versionadded:: 0.9.0b2
+ .. versionadded:: 0.9.0
"""
self.nowait = nowait
@@ -1412,7 +1412,7 @@ class GenerativeSelect(SelectBase):
a fixed textual string which cannot be altered at this level, only
wrapped as a subquery.
- .. versionadded:: 0.9.0b2 :class:`.GenerativeSelect` was added to
+ .. versionadded:: 0.9.0 :class:`.GenerativeSelect` was added to
provide functionality specific to :class:`.Select` and :class:`.CompoundSelect`
while allowing :class:`.SelectBase` to be used for other SELECT-like
objects, e.g. :class:`.TextAsFrom`.
@@ -1505,7 +1505,7 @@ class GenerativeSelect(SelectBase):
and Oracle. May render as a table or as a column depending on
backend.
- .. versionadded:: 0.9.0b2
+ .. versionadded:: 0.9.0
"""
self._for_update_arg = ForUpdateArg(nowait=nowait, read=read, of=of)
@@ -2949,7 +2949,7 @@ class TextAsFrom(SelectBase):
The :class:`.TextAsFrom` construct is produced via the
:meth:`.TextClause.columns` method - see that method for details.
- .. versionadded:: 0.9.0b2
+ .. versionadded:: 0.9.0
.. seealso::