]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
removed various print statements
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 28 Jan 2007 23:52:01 +0000 (23:52 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 28 Jan 2007 23:52:01 +0000 (23:52 +0000)
lib/sqlalchemy/ext/selectresults.py
lib/sqlalchemy/orm/query.py
lib/sqlalchemy/sql.py

index 153b0c2b9a8345bd9d8a6e3df68a060484e8467d..23fd988930bbc662f18500c53f2cbbbd10cc24d4 100644 (file)
@@ -137,9 +137,6 @@ class SelectResults(object):
                 clause = clause.outerjoin(prop.select_table, prop.get_join())
             else:
                 clause = clause.join(prop.select_table, prop.get_join())
-                print "SELECT_TABLE", prop.select_table
-                print "JOIN", prop.get_join()
-                print "CLAUSE", str(clause), "DONE CLAUSE"
             mapper = prop.mapper
         return (clause, mapper)
         
index e0294ef72d54f6fa4bc4d44c213c295872ee05d0..bc047ff504609ff05b6879e1a9695cbeee4fc31d 100644 (file)
@@ -402,11 +402,7 @@ class Query(object):
         if whereclause is not None and self.is_polymorphic:
             # adapt the given WHERECLAUSE to adjust instances of this query's mapped table to be that of our select_table,
             # which may be the "polymorphic" selectable used by our mapper.
-            print "PolYMORPHIC YES"
-            print "WHERECLAUSE", str(whereclause)
-            print "OUR TABLE", str(self.table)
             whereclause.accept_visitor(sql_util.ClauseAdapter(self.table))
-            print "AND NOW ITS", str(whereclause)
         
         context = kwargs.pop('query_context', None)
         if context is None:
@@ -543,4 +539,4 @@ class SelectionContext(OperationContext):
     def accept_option(self, opt):
         """accept a MapperOption which will process (modify) the state of this SelectionContext."""
         opt.process_selection_context(self)
-        
\ No newline at end of file
+        
index 5f392a61cbe1d0104c34f6a421098b34b28854b5..ee1dce9f863a0577d6ddee458daa1f391cc14a41 100644 (file)
@@ -1405,7 +1405,6 @@ class CompoundSelect(_SelectBaseMixin, FromClause):
             for c in s.c:
                 yield c
     def _proxy_column(self, column):
-        print "PROXYING COLUMN", type(column), column
         if self.use_labels:
             col = column._make_proxy(self, name=column._label)
         else: