1031 del sys.modules['PyProfile'] |
1031 del sys.modules['PyProfile'] |
1032 except KeyError: |
1032 except KeyError: |
1033 pass |
1033 pass |
1034 return self.clientCapabilities |
1034 return self.clientCapabilities |
1035 except ImportError: |
1035 except ImportError: |
1036 return (self.clientCapabilities & |
1036 return ( |
1037 ~DebugClientCapabilities.HasProfiler) |
1037 self.clientCapabilities & ~DebugClientCapabilities.HasProfiler) |
1038 |
1038 |
1039 def write(self, s): |
1039 def write(self, s): |
1040 """ |
1040 """ |
1041 Public method to write data to the output stream. |
1041 Public method to write data to the output stream. |
1042 |
1042 |