diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-12-07 06:30:00 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-12-07 06:30:00 +0000 |
| commit | ee7fcf311068ca233de43eaec241ccc965c626a2 (patch) | |
| tree | f0c458158c4d106daae6f303385ebf548e426f32 /lib/sqlalchemy/engine/base.py | |
| parent | bdf0117578df3623b7c271e5ed9566928410cc6b (diff) | |
| download | sqlalchemy-ee7fcf311068ca233de43eaec241ccc965c626a2.tar.gz | |
- re-documented Table and Column constructors, fixed case sensitivity description [ticket:1231]
- turned on autoclass_content="both". Need to specify __init__ docstring with a newline after the """.
- other docs
Diffstat (limited to 'lib/sqlalchemy/engine/base.py')
| -rw-r--r-- | lib/sqlalchemy/engine/base.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py index 97624280e..3a0c1af18 100644 --- a/lib/sqlalchemy/engine/base.py +++ b/lib/sqlalchemy/engine/base.py @@ -10,8 +10,13 @@ Defines the basic components used to interface DB-API modules with higher-level statement-construction, connection-management, execution and result contexts. + """ +__all__ = ['BufferedColumnResultProxy', 'BufferedColumnRow', 'BufferedRowResultProxy', 'Compiled', 'Connectable', + 'Connection', 'DefaultRunner', 'Dialect', 'Engine', 'ExecutionContext', 'NestedTransaction', 'ResultProxy', + 'RootTransaction', 'RowProxy', 'SchemaIterator', 'StringIO', 'Transaction', 'TwoPhaseTransaction', 'connection_memoize'] + import inspect, StringIO from sqlalchemy import exc, schema, util, types, log from sqlalchemy.sql import expression @@ -467,7 +472,12 @@ class Compiled(object): class Connectable(object): - """Interface for an object that can provide an Engine and a Connection object which correponds to that Engine.""" + """Interface for an object which supports execution of SQL constructs. + + The two implementations of ``Connectable`` are :class:`Connection` and + :class:`Engine`. + + """ def contextual_connect(self): """Return a Connection object which may be part of an ongoing context.""" |
