summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/sqlalchemy/engine/default.py4
-rw-r--r--lib/sqlalchemy/engine/interfaces.py10
-rw-r--r--lib/sqlalchemy/sql/compiler.py8
3 files changed, 11 insertions, 11 deletions
diff --git a/lib/sqlalchemy/engine/default.py b/lib/sqlalchemy/engine/default.py
index 1be7bc029..c536d1a4c 100644
--- a/lib/sqlalchemy/engine/default.py
+++ b/lib/sqlalchemy/engine/default.py
@@ -243,12 +243,12 @@ class DefaultDialect(interfaces.Dialect):
return unicode_for_varchar
def type_descriptor(self, typeobj):
- """Provide a database-specific ``TypeEngine`` object, given
+ """Provide a database-specific :class:`.TypeEngine` object, given
the generic object which comes from the types module.
This method looks for a dictionary called
``colspecs`` as a class or instance-level variable,
- and passes on to ``types.adapt_type()``.
+ and passes on to :func:`.types.adapt_type`.
"""
return sqltypes.adapt_type(typeobj, self.colspecs)
diff --git a/lib/sqlalchemy/engine/interfaces.py b/lib/sqlalchemy/engine/interfaces.py
index b1356489f..6d0b1cb61 100644
--- a/lib/sqlalchemy/engine/interfaces.py
+++ b/lib/sqlalchemy/engine/interfaces.py
@@ -43,10 +43,10 @@ class Dialect(object):
'utf-8'.
statement_compiler
- a :class:`~Compiled` class used to compile SQL statements
+ a :class:`.Compiled` class used to compile SQL statements
ddl_compiler
- a :class:`~Compiled` class used to compile DDL statements
+ a :class:`.Compiled` class used to compile DDL statements
server_version_info
a tuple containing a version number for the DB backend in use.
@@ -163,8 +163,8 @@ class Dialect(object):
"""Transform a generic type to a dialect-specific type.
Dialect classes will usually use the
- :func:`~sqlalchemy.types.adapt_type` function in the types module to
- make this job easy.
+ :func:`.types.adapt_type` function in the types module to
+ accomplish this.
The returned result is cached *per dialect class* so can
contain no dialect-instance state.
@@ -244,7 +244,7 @@ class Dialect(object):
Deprecated. This method is only called by the default
- implementation of :meth:`get_pk_constraint()`. Dialects should
+ implementation of :meth:`.Dialect.get_pk_constraint`. Dialects should
instead implement this method directly.
"""
diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py
index 0847335c2..74127c86a 100644
--- a/lib/sqlalchemy/sql/compiler.py
+++ b/lib/sqlalchemy/sql/compiler.py
@@ -8,17 +8,17 @@
Classes provided include:
-:class:`~sqlalchemy.sql.compiler.SQLCompiler` - renders SQL
+:class:`.compiler.SQLCompiler` - renders SQL
strings
-:class:`~sqlalchemy.sql.compiler.DDLCompiler` - renders DDL
+:class:`.compiler.DDLCompiler` - renders DDL
(data definition language) strings
-:class:`~sqlalchemy.sql.compiler.GenericTypeCompiler` - renders
+:class:`.compiler.GenericTypeCompiler` - renders
type specification strings.
To generate user-defined SQL strings, see
-:module:`~sqlalchemy.ext.compiler`.
+:doc:`/ext/compiler`.
"""