summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG1
-rw-r--r--sqlparse/tokens.py2
2 files changed, 0 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 1971dfb..e3264ec 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -10,7 +10,6 @@ Bug Fixes
* Fix parsing of incomplete AS (issue284, by vmuriart).
* Fix parsing of Oracle names containing dollars (issue291).
-* Fix Python 3.6 compatibility (issue286, by timgraham).
Internal Changes
diff --git a/sqlparse/tokens.py b/sqlparse/tokens.py
index 7ae355c..6864f69 100644
--- a/sqlparse/tokens.py
+++ b/sqlparse/tokens.py
@@ -19,8 +19,6 @@ class _TokenType(tuple):
return item is not None and (self is item or item[:len(self)] == self)
def __getattr__(self, name):
- if name == '__set_name__':
- raise AttributeError
new = _TokenType(self + (name,))
setattr(self, name, new)
new.parent = self