File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
"""Disassembled instuctions"""
4
4
5
- from adt import ADT
5
+ from . adt import ADT
6
6
7
7
class Kind (ADT ) : pass
8
8
class Having_side_effects (Kind ) : pass
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
# -*- coding: utf-8 -*-
3
3
4
- import os , time , atexit
4
+ import os , time , atexit , sys
5
5
from signal import signal , SIGTERM
6
6
import requests
7
7
from subprocess import Popen
8
8
from mmap import mmap
9
- from urlparse import urlparse , parse_qs
9
+ if sys .version_info > (3 , 0 ):
10
+ from urllib .parse import urlparse , parse_qs
11
+ else :
12
+ from urlparse import urlparse , parse_qs
13
+
10
14
from tempfile import NamedTemporaryFile
11
15
import json
12
- import adt , arm , asm , bil
16
+ from . import adt , arm , asm , bil
13
17
14
18
import threading
15
19
You can’t perform that action at this time.
0 commit comments