eric6/Utilities/BackgroundClient.py

changeset 7635
0cdead130a81
parent 7628
f904d0eef264
child 7637
c878e8255972
equal deleted inserted replaced
7634:8c3d033e5044 7635:0cdead130a81
43 """ 43 """
44 self.services = {} 44 self.services = {}
45 self.batchServices = {} 45 self.batchServices = {}
46 46
47 self.connection = socket.create_connection((host, port)) 47 self.connection = socket.create_connection((host, port))
48 ver = b'Python2' if sys.version_info[0] == 2 else b'Python3' 48 ver = b'Python3'
49 self.connection.sendall(ver) 49 self.connection.sendall(ver)
50 self.__maxProcs = maxProcs 50 self.__maxProcs = maxProcs
51 51
52 def __initClientService(self, fn, path, module): 52 def __initClientService(self, fn, path, module):
53 """ 53 """

eric ide

mercurial