summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/selectable.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-12-30 18:30:11 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2013-12-30 18:30:11 -0500
commitd88d7554256347b7b2bed7e5c3396a50292afe1c (patch)
tree38a4b2c8841760880edf2904ef80329f013d6db5 /lib/sqlalchemy/sql/selectable.py
parentc91de19e4125ad98c7952658cf2bac94750d3e4c (diff)
downloadsqlalchemy-d88d7554256347b7b2bed7e5c3396a50292afe1c.tar.gz
- call it 0.9.0
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::