800:4daa1d31f4ba | 806:30db18b3c78b |
---|---|
18 import re | 18 import re |
19 | 19 |
20 | 20 |
21 from DebugProtocol import * | 21 from DebugProtocol import * |
22 import DebugClientCapabilities | 22 import DebugClientCapabilities |
23 from DebugBase import setRecursionLimit, printerr | 23 from DebugBase import setRecursionLimit, printerr # __IGNORE_WARNING__ |
24 from AsyncFile import * | 24 from AsyncFile import * |
25 from DebugConfig import ConfigVarTypeStrings | 25 from DebugConfig import ConfigVarTypeStrings |
26 from FlexCompleter import Completer | 26 from FlexCompleter import Completer |
27 | 27 |
28 | 28 |
930 Private method to determine the clients capabilities. | 930 Private method to determine the clients capabilities. |
931 | 931 |
932 @return client capabilities (integer) | 932 @return client capabilities (integer) |
933 """ | 933 """ |
934 try: | 934 try: |
935 import PyProfile | 935 import PyProfile # __IGNORE_WARNING__ |
936 try: | 936 try: |
937 del sys.modules['PyProfile'] | 937 del sys.modules['PyProfile'] |
938 except KeyError: | 938 except KeyError: |
939 pass | 939 pass |
940 return self.clientCapabilities | 940 return self.clientCapabilities |