summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql
diff options
context:
space:
mode:
authorJason Kirtland <jek@discorporate.us>2007-08-19 18:34:24 +0000
committerJason Kirtland <jek@discorporate.us>2007-08-19 18:34:24 +0000
commitd1020a8d4ee96a4b00eed9b0eae8adf176bcd149 (patch)
treea81513b8be80f51494d189907bd1c54c7cce7e61 /lib/sqlalchemy/sql
parent551512c561e9cdd2caab22fdd022ebdaede568fe (diff)
downloadsqlalchemy-d1020a8d4ee96a4b00eed9b0eae8adf176bcd149.tar.gz
light docstring tweaks to the pool
more pedantic DBAPI -> DB-API changes in docstrings
Diffstat (limited to 'lib/sqlalchemy/sql')
-rw-r--r--lib/sqlalchemy/sql/compiler.py2
-rw-r--r--lib/sqlalchemy/sql/expression.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py
index 6053c72be..e9046b407 100644
--- a/lib/sqlalchemy/sql/compiler.py
+++ b/lib/sqlalchemy/sql/compiler.py
@@ -138,7 +138,7 @@ class DefaultCompiler(engine.Compiled, visitors.ClauseVisitor):
# default formatting style for bind parameters
self.bindtemplate = ":%s"
- # paramstyle from the dialect (comes from DBAPI)
+ # paramstyle from the dialect (comes from DB-API)
self.paramstyle = self.dialect.paramstyle
# true if the paramstyle is positional
diff --git a/lib/sqlalchemy/sql/expression.py b/lib/sqlalchemy/sql/expression.py
index e117e3f47..64fc9b3b4 100644
--- a/lib/sqlalchemy/sql/expression.py
+++ b/lib/sqlalchemy/sql/expression.py
@@ -578,7 +578,7 @@ def literal(value, type_=None):
value
the value to be bound. Can be any Python object supported by
- the underlying DBAPI, or is translatable via the given type
+ the underlying DB-API, or is translatable via the given type
argument.
type\_