Fix cross reference

This commit is contained in:
Vraj Mohan
2013-11-14 10:10:59 -05:00
parent 868e81a3f9
commit 24a4649930
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ as long as the names match up::
print("New DBAPI connection:", dbapi_connection)
print("Connection record:", kw['connection_record'])
Above, the presence of ``**kw`` tells :func:`.event.listen_for` that
Above, the presence of ``**kw`` tells :func:`.listens_for` that
arguments should be passed to the function by name, rather than positionally.
.. versionadded:: 0.9.0 Added optional ``named`` argument dispatch to
+3 -3
View File
@@ -39,11 +39,11 @@ def inspect(subject, raiseerr=True):
The returned value in some cases may be the
same object as the one given, such as if a
:class:`.orm.Mapper` object is passed. In other
:class:`.Mapper` object is passed. In other
cases, it will be an instance of the registered
inspection type for the given object, such as
if a :class:`.engine.Engine` is passed, an
:class:`.engine.Inspector` object is returned.
if an :class:`.engine.Engine` is passed, an
:class:`.Inspector` object is returned.
:param subject: the subject to be inspected.
:param raiseerr: When ``True``, if the given subject
+1 -1
View File
@@ -361,7 +361,7 @@ class ClauseElement(Visitable):
as well as by :func:`.select` constructs when placed into
the FROM clause of another :func:`.select`. (Note that
subqueries should be normally created using the
:func:`.Select.alias` method, as many platforms require
:meth:`.Select.alias` method, as many platforms require
nested SELECT statements to be named).
As expressions are composed together, the application of