diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2009-01-17 19:30:32 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2009-01-17 19:30:32 +0000 |
| commit | 2a3135744afaee44903adf0c2e0649cb1830ea4e (patch) | |
| tree | 9c979b7592ed30626edb73983e25cbaa3bbc875d /lib/sqlalchemy | |
| parent | 2ab5b4f30c234e5301f827e335d57fa7e18896e8 (diff) | |
| download | sqlalchemy-2a3135744afaee44903adf0c2e0649cb1830ea4e.tar.gz | |
docstring fixup
Diffstat (limited to 'lib/sqlalchemy')
| -rw-r--r-- | lib/sqlalchemy/orm/query.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/sqlalchemy/orm/query.py b/lib/sqlalchemy/orm/query.py index 4fa68379d..6690eee12 100644 --- a/lib/sqlalchemy/orm/query.py +++ b/lib/sqlalchemy/orm/query.py @@ -753,7 +753,7 @@ class Query(object): def union_all(self, *q): """Produce a UNION ALL of this Query against one or more queries. - Works the same way as :method:`union`. See that + Works the same way as :meth:`~sqlalchemy.orm.query.Query.union`. See that method for usage examples. """ @@ -764,7 +764,7 @@ class Query(object): def intersect(self, *q): """Produce an INTERSECT of this Query against one or more queries. - Works the same way as :method:`union`. See that + Works the same way as :meth:`~sqlalchemy.orm.query.Query.union`. See that method for usage examples. """ @@ -775,7 +775,7 @@ class Query(object): def intersect_all(self, *q): """Produce an INTERSECT ALL of this Query against one or more queries. - Works the same way as :method:`union`. See that + Works the same way as :meth:`~sqlalchemy.orm.query.Query.union`. See that method for usage examples. """ @@ -786,7 +786,7 @@ class Query(object): def except_(self, *q): """Produce an EXCEPT of this Query against one or more queries. - Works the same way as :method:`union`. See that + Works the same way as :meth:`~sqlalchemy.orm.query.Query.union`. See that method for usage examples. """ @@ -797,7 +797,7 @@ class Query(object): def except_all(self, *q): """Produce an EXCEPT ALL of this Query against one or more queries. - Works the same way as :method:`union`. See that + Works the same way as :meth:`~sqlalchemy.orm.query.Query.union`. See that method for usage examples. """ |
