summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/engine
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-04-29 16:08:36 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-04-29 16:08:36 +0000
commitc0f391af951ab75a1c486d4179216d31997a0f83 (patch)
treedc90d3214bd1c8c42e5f1acd7d8303739eafccde /lib/sqlalchemy/engine
parentbb991b972d3c76f9f2528916a77ff893cd433f99 (diff)
downloadsqlalchemy-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.py7
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.