diff options
| author | Lele Gaifax <lele@metapensiero.it> | 2019-01-14 11:26:33 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-01-25 14:56:50 -0500 |
| commit | 66e88d30a86fc37e2eaf7367e988ced3834e3250 (patch) | |
| tree | eaee9860ff866d88e398cb6531a988ccd8601e09 /lib/sqlalchemy/engine | |
| parent | c9a31767e0d3a15ab45101aca21924cb4434c7b9 (diff) | |
| download | sqlalchemy-66e88d30a86fc37e2eaf7367e988ced3834e3250.tar.gz | |
Fix many spell glitches
This affects mostly docstrings, except in orm/events.py::dispose_collection()
where one parameter gets renamed: given that the method is
empty, it seemed reasonable to me to fix that too.
Closes: #4440
Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/4440
Pull-request-sha: 779ed75acb6142e1f1daac467b5b14134529bb4b
Change-Id: Ic0553fe97853054b09c2453af76d96363de6eb0e
Diffstat (limited to 'lib/sqlalchemy/engine')
| -rw-r--r-- | lib/sqlalchemy/engine/default.py | 2 | ||||
| -rw-r--r-- | lib/sqlalchemy/engine/interfaces.py | 2 | ||||
| -rw-r--r-- | lib/sqlalchemy/engine/result.py | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqlalchemy/engine/default.py b/lib/sqlalchemy/engine/default.py index e54e99b75..58c09a3ac 100644 --- a/lib/sqlalchemy/engine/default.py +++ b/lib/sqlalchemy/engine/default.py @@ -1339,7 +1339,7 @@ class DefaultExecutionContext(interfaces.ExecutionContext): with the name. :param isolate_multiinsert_groups=True: indicates that multi-valued - INSERT contructs created using :meth:`.Insert.values` should be + INSERT constructs created using :meth:`.Insert.values` should be handled by returning only the subset of parameters that are local to the current column default invocation. When ``False``, the raw parameters of the statement are returned including the diff --git a/lib/sqlalchemy/engine/interfaces.py b/lib/sqlalchemy/engine/interfaces.py index d579e6fdb..3142c0c6b 100644 --- a/lib/sqlalchemy/engine/interfaces.py +++ b/lib/sqlalchemy/engine/interfaces.py @@ -901,7 +901,7 @@ class CreateEnginePlugin(object): """ def __init__(self, url, kwargs): - """Contruct a new :class:`.CreateEnginePlugin`. + """Construct a new :class:`.CreateEnginePlugin`. The plugin object is instantiated individually for each call to :func:`.create_engine`. A single :class:`.Engine` will be diff --git a/lib/sqlalchemy/engine/result.py b/lib/sqlalchemy/engine/result.py index 9255343e1..fcb1d4155 100644 --- a/lib/sqlalchemy/engine/result.py +++ b/lib/sqlalchemy/engine/result.py @@ -363,7 +363,7 @@ class ResultMetaData(object): The remaining fairly common case is that of the textual SQL that includes at least partial column information; this is when - we use a :class:`.TextAsFrom` construct. This contruct may have + we use a :class:`.TextAsFrom` construct. This construct may have unordered or ordered column information. In the ordered case, we merge the cursor.description and the compiled construct's information positionally, and warn if there are additional description names @@ -901,7 +901,7 @@ class ResultProxy(object): def close(self): """Close this ResultProxy. - This closes out the underlying DBAPI cursor corresonding + This closes out the underlying DBAPI cursor corresponding to the statement execution, if one is still present. Note that the DBAPI cursor is automatically released when the :class:`.ResultProxy` exhausts all available rows. :meth:`.ResultProxy.close` is generally |
