summaryrefslogtreecommitdiff
path: root/sqlparse/tokens.py
diff options
context:
space:
mode:
authorVictor Uriarte <victor.m.uriarte@intel.com>2016-05-28 11:06:32 -0700
committerVictor Uriarte <victor.m.uriarte@intel.com>2016-05-29 00:13:49 -0700
commit5d61f0cfffa273f332bf8be4a9cf0a9930fae034 (patch)
tree40d4fc2c53ff8b5b9a1bbc7ed0a8d686702c2628 /sqlparse/tokens.py
parenta767c88b008d407d91b9118d124e2a9b579a7f12 (diff)
downloadsqlparse-5d61f0cfffa273f332bf8be4a9cf0a9930fae034.tar.gz
Remove unused hash function from tokens.py
Diffstat (limited to 'sqlparse/tokens.py')
-rw-r--r--sqlparse/tokens.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/sqlparse/tokens.py b/sqlparse/tokens.py
index 98fa8a6..aa0b335 100644
--- a/sqlparse/tokens.py
+++ b/sqlparse/tokens.py
@@ -33,9 +33,6 @@ class _TokenType(tuple):
new.parent = self
return new
- def __hash__(self):
- return hash(tuple(self))
-
def __repr__(self):
return 'Token' + (self and '.' or '') + '.'.join(self)