From: Mike Bayer Date: Thu, 30 May 2013 19:56:00 +0000 (-0400) Subject: - the distinct hash code logic here is entirely obsolete as you can X-Git-Tag: rel_0_9_0b1~304^2~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c4c37c0201a966ecb05b5540769f48d7387495c5;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - the distinct hash code logic here is entirely obsolete as you can do eq_() on columnelements now with a meaningful bool; jython is entirely a non-starter right now in any case as 2.7 doesn't support common accessors like __defaults__ --- diff --git a/.gitignore b/.gitignore index 5fe72b527b..69da39e02d 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ tox.ini *.egg-info .coverage .*,cover +*.class *.so sqlnet.log /mapping_setup.py diff --git a/lib/sqlalchemy/sql/expression.py b/lib/sqlalchemy/sql/expression.py index 72879f6e46..5820cb1061 100644 --- a/lib/sqlalchemy/sql/expression.py +++ b/lib/sqlalchemy/sql/expression.py @@ -1715,17 +1715,6 @@ class ClauseElement(Visitable): d.pop('_is_clone_of', None) return d - if util.jython: - def __hash__(self): - """Return a distinct hash code. - - ClauseElements may have special equality comparisons which - makes us rely on them having unique hash codes for use in - hash-based collections. Stock __hash__ doesn't guarantee - unique values on platforms with moving GCs. - """ - return id(self) - def _annotate(self, values): """return a copy of this ClauseElement with annotations updated by the given dictionary.