Skip to content

Commit a0ae047

Browse files
committed
fix py26 compat
1 parent a469fb2 commit a0ae047

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sqlalchemy_monetdb/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from sqlalchemy.sql import compiler
55

66

7-
RESERVED_WORDS = {"asc", "action", "add", "admin", "after", "aggregate", "all",
7+
RESERVED_WORDS = set(["asc", "action", "add", "admin", "after", "aggregate", "all",
88
"alter", "always", "and", "any", "as", "asymmetric", "atomic",
99
"authorization", "autoincrement", "before", "begin",
1010
"between", "bigint", "bigserial", "blob", "boolean", "by",
@@ -38,7 +38,7 @@
3838
"timestamp", "tinyint", "to", "transaction", "trigger",
3939
"true", "type", "unencrypted", "union", "unique", "unknown",
4040
"update", "user", "using", "values", "varchar", "view",
41-
"when", "where", "while", "with", "year", "zone"}
41+
"when", "where", "while", "with", "year", "zone"])
4242

4343

4444
class MonetExecutionContext(default.DefaultExecutionContext):

0 commit comments

Comments
 (0)