eric6/Utilities/BackgroundClient.py

changeset 7639
422fd05e9c91
parent 7637
c878e8255972
child 7646
39e3db2b4936
child 7660
87291331c122
equal deleted inserted replaced
7638:176145438b1e 7639:422fd05e9c91
7 """ 7 """
8 Module implementing a Qt free version of a background client for the various 8 Module implementing a Qt free version of a background client for the various
9 checkers and other python interpreter dependent functions. 9 checkers and other python interpreter dependent functions.
10 """ 10 """
11 11
12 from __future__ import unicode_literals 12 import io
13 try:
14 bytes = unicode
15 import StringIO as io # __IGNORE_EXCEPTION__
16 except NameError:
17 import io # __IGNORE_WARNING__
18
19 import json 13 import json
20 import socket 14 import socket
21 import struct 15 import struct
22 import sys 16 import sys
23 import time 17 import time

eric ide

mercurial