summaryrefslogtreecommitdiff
path: root/test/gen-wasm.py
diff options
context:
space:
mode:
authorGuanzhong Chen <gzchen@google.com>2019-08-15 10:38:09 -0700
committerGitHub <noreply@github.com>2019-08-15 10:38:09 -0700
commitdcaa42c6bcad851faf4af8076e2f301ddddd6f21 (patch)
treeef0047a56bd969ce1159d9d24f057874dfa70888 /test/gen-wasm.py
parent3150801f60bd64280fe43fdf4604c50018949eb9 (diff)
downloadwabt-dcaa42c6bcad851faf4af8076e2f301ddddd6f21.tar.gz
wabt-dcaa42c6bcad851faf4af8076e2f301ddddd6f21.tar.bz2
wabt-dcaa42c6bcad851faf4af8076e2f301ddddd6f21.zip
Run flake8 on the whole repository (#1144)
Diffstat (limited to 'test/gen-wasm.py')
-rwxr-xr-xtest/gen-wasm.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/gen-wasm.py b/test/gen-wasm.py
index b0904620..4135435e 100755
--- a/test/gen-wasm.py
+++ b/test/gen-wasm.py
@@ -36,7 +36,7 @@ try:
except ImportError:
raise Error('Unable to import ply. Did you run "git submodule update"?')
-## ply stuff ###################################################################
+# ply stuff ###################################################################
NAMED_VALUES = {
'i32': 0x7f, # -1
'i64': 0x7e, # -2
@@ -268,7 +268,7 @@ keywords = {
'str': 'STR',
}
-## lexer ###
+# lexer ###
tokens = tuple(keywords.values()) + (
'BYTE',
@@ -344,7 +344,7 @@ def t_error(t):
lexer = lex.lex()
-## parser ###
+# parser ###
def LebLoop(data, v, cond):