From: Mike Bayer Date: Thu, 25 Apr 2013 18:14:23 +0000 (-0400) Subject: dont need this X-Git-Tag: rel_0_8_1~3^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9506bbe82fe150bd05529b00485edc064edbf418;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git dont need this --- diff --git a/lib/sqlalchemy/sql/expression.py b/lib/sqlalchemy/sql/expression.py index 92b8aea985..b6e0b5ce78 100644 --- a/lib/sqlalchemy/sql/expression.py +++ b/lib/sqlalchemy/sql/expression.py @@ -3953,12 +3953,6 @@ class Join(FromClause): def get_children(self, **kwargs): return self.left, self.right, self.onclause - def compare(self, other): - return isinstance(other, Join) and \ - self.left.compare(other.left) and \ - self.right.compare(other.right) and \ - self.onclause.compare(other.onclause) - def _match_primaries(self, left, right): if isinstance(left, Join): left_right = left.right