mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-29 20:14:55 -04:00
Fix cross reference
This commit is contained in:
Vendored
+1
-1
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user