diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-04-29 16:08:36 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-04-29 16:08:36 +0000 |
| commit | c0f391af951ab75a1c486d4179216d31997a0f83 (patch) | |
| tree | dc90d3214bd1c8c42e5f1acd7d8303739eafccde /lib/sqlalchemy/engine | |
| parent | bb991b972d3c76f9f2528916a77ff893cd433f99 (diff) | |
| download | sqlalchemy-c0f391af951ab75a1c486d4179216d31997a0f83.tar.gz | |
- fixed textual select elements that got broke the other day
- docstring work
Diffstat (limited to 'lib/sqlalchemy/engine')
| -rw-r--r-- | lib/sqlalchemy/engine/base.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py index 5083b1cff..1cea9ffc3 100644 --- a/lib/sqlalchemy/engine/base.py +++ b/lib/sqlalchemy/engine/base.py @@ -399,11 +399,8 @@ class Connectable(sql.Executor): def execute(self, object, *multiparams, **params): raise NotImplementedError() - def _not_impl(self): - raise NotImplementedError() - - engine = property(_not_impl, doc="The Engine which this Connectable is associated with.") - dialect = property(_not_impl, doc="Dialect which this Connectable is associated with.") + engine = util.NotImplProperty("The Engine which this Connectable is associated with.") + dialect = util.NotImplProperty("Dialect which this Connectable is associated with.") class Connection(Connectable): """Represent a single DBAPI connection returned from the underlying connection pool. |
