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