Lines Matching refs:self
9 def __init__(self, host="localhost", port=11451): argument
10 self.__host = host
11 self.__port = port
14 def invoke(self, args, from_tty): argument
41 self.__host = args.host
44 self.__port = args.port
47 self.connect_to_pycharm()
49 self.connect_to_vscode()
51 self.connect_to_eclipse()
53 def connect_to_pycharm(self): argument
60 … pydevd_pycharm.settrace(self.__host, port=self.__port, stdoutToServer=True, stderrToServer=True)
62 def connect_to_vscode(self): argument
69 debugpy.listen((self.__host, self.__port))
72 def connect_to_eclipse(self): argument