aboutsummaryrefslogtreecommitdiffstats
path: root/dwasm.py
diff options
context:
space:
mode:
Diffstat (limited to 'dwasm.py')
-rwxr-xr-xdwasm.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/dwasm.py b/dwasm.py
index e404dca..ce5646f 100755
--- a/dwasm.py
+++ b/dwasm.py
@@ -1,17 +1,14 @@
#!/usr/bin/python3
-import argparse
import code
-import readline
import signal
import sys
from parse import Argparser, premain, SigHandler_SIGINT,PythonInterpreter
-from utils import ParseFlags
def getWASMModule():
module_path = sys.argv[1]
interpreter = PythonInterpreter()
- module = interpreter.parse(module_path)
+ #module = interpreter.parse(module_path)
def main():
signal.signal(signal.SIGINT, SigHandler_SIGINT)