]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fixed minor reST issue
authorLele Gaifax <lele@metapensiero.it>
Sat, 15 Dec 2007 10:08:37 +0000 (10:08 +0000)
committerLele Gaifax <lele@metapensiero.it>
Sat, 15 Dec 2007 10:08:37 +0000 (10:08 +0000)
lib/sqlalchemy/engine/base.py

index 259909d47952befc36d916b7f851eb211d923472..801d4e28c15b65ad03cdfeeaacbc6bb369d43634 100644 (file)
@@ -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