summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-03-06 03:10:46 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-03-06 03:10:46 +0000
commit1644a44628f6a09bb992752bf266994afe0e98df (patch)
tree515a7c6709fe292af63319d6e1e2ba04349b0bf5 /lib/sqlalchemy/sql.py
parenta0079b6831aef2b604859f89f07772e65c04d5d4 (diff)
downloadsqlalchemy-1644a44628f6a09bb992752bf266994afe0e98df.tar.gz
a mapper with inheritance will place itself as "dependent" on the inherited mapper; even though this is not usually needed, it allows certain exotic combinations of mapper setups to work (i.e. the one in the polymorph example)
Diffstat (limited to 'lib/sqlalchemy/sql.py')
-rw-r--r--lib/sqlalchemy/sql.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql.py b/lib/sqlalchemy/sql.py
index a6ddf8cb9..d4312a151 100644
--- a/lib/sqlalchemy/sql.py
+++ b/lib/sqlalchemy/sql.py
@@ -1211,7 +1211,6 @@ class Select(SelectBaseMixin, FromClause):
self.visit_select(cs)
for s in cs.selects:
s.parens = False
- print "BUT", id(cs), cs.parens
def visit_column(self, c):pass
def visit_table(self, c):pass
def visit_select(self, select):