From e630b322f6e776ded26f8bab2e117f1433259a45 Mon Sep 17 00:00:00 2001 From: Lele Gaifax Date: Sat, 15 Dec 2007 10:08:37 +0000 Subject: [PATCH] Fixed minor reST issue --- lib/sqlalchemy/engine/base.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py index 259909d479..801d4e28c1 100644 --- a/lib/sqlalchemy/engine/base.py +++ b/lib/sqlalchemy/engine/base.py @@ -287,7 +287,7 @@ class ExecutionContext(object): Connection may have close_with_result=True set, in which case it can only be used once. - dialect + dialect dialect which created this ExecutionContext. cursor @@ -413,7 +413,6 @@ class ExecutionContext(object): def lastrow_has_defaults(self): """Return True if the last INSERT or UPDATE row contained inlined or database-side defaults. - """ raise NotImplementedError() @@ -474,7 +473,7 @@ class Compiled(object): def construct_params(self, params): """Return the bind params for this compiled object. - params is a dict of string/object pairs whos + `params` is a dict of string/object pairs whos values will override bind values compiled in to the statement. """ @@ -551,7 +550,7 @@ class Connection(Connectable): raise exceptions.InvalidRequestError("This Connection is closed") def _branch(self): - """return a new Connection which references this Connection's + """Return a new Connection which references this Connection's engine and connection; but does not have close_with_result enabled, and also whose close() method does nothing. @@ -946,7 +945,7 @@ class Transaction(object): is_active = property(lambda s:s._is_active) def close(self): - """close this transaction. + """Close this transaction. If this transaction is the base transaction in a begin/commit nesting, the transaction will rollback(). Otherwise, the -- 2.47.3