diff options
| author | Vraj Mohan <r.vrajmohan@gmail.com> | 2013-11-13 08:24:35 -0500 |
|---|---|---|
| committer | Vraj Mohan <r.vrajmohan@gmail.com> | 2013-11-13 08:24:35 -0500 |
| commit | b9abc078ee1fb0c13e949b1abaef7bf40d0a50f2 (patch) | |
| tree | e7dbb5b22403634ab86459b268fd90b6e797e27b /lib/sqlalchemy | |
| parent | fe1d64473896b1e8abeb8ddb966447632c057321 (diff) | |
| download | sqlalchemy-b9abc078ee1fb0c13e949b1abaef7bf40d0a50f2.tar.gz | |
Fix indentation and escape *args and **kwargs
Diffstat (limited to 'lib/sqlalchemy')
| -rw-r--r-- | lib/sqlalchemy/orm/mapper.py | 2 | ||||
| -rw-r--r-- | lib/sqlalchemy/orm/query.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/orm/mapper.py b/lib/sqlalchemy/orm/mapper.py index 4336c191d..375e7b1af 100644 --- a/lib/sqlalchemy/orm/mapper.py +++ b/lib/sqlalchemy/orm/mapper.py @@ -622,7 +622,7 @@ class Mapper(_InspectionAttr): def entity(self): """Part of the inspection API. - Returns self.class_. + Returns self.class\_. """ return self.class_ diff --git a/lib/sqlalchemy/orm/query.py b/lib/sqlalchemy/orm/query.py index 1b83f3fb8..9051c081e 100644 --- a/lib/sqlalchemy/orm/query.py +++ b/lib/sqlalchemy/orm/query.py @@ -1625,7 +1625,7 @@ class Query(object): example :ref:`examples_xmlpersistence` which illustrates an XPath-like query system using algorithmic joins. - :param *props: A collection of one or more join conditions, + :param \*props: A collection of one or more join conditions, each consisting of a relationship-bound attribute or string relationship name representing an "on clause", or a single target entity, or a tuple in the form of ``(target, onclause)``. @@ -2204,7 +2204,7 @@ class Query(object): ``Query``. :param \*prefixes: optional prefixes, typically strings, - not using any commas. In particular is useful for MySQL keywords. + not using any commas. In particular is useful for MySQL keywords. e.g.:: |
