(self, *args)
| 151 | os._exit(0) |
| 152 | |
| 153 | def debug(self, *args): |
| 154 | if not self.debugging: |
| 155 | return |
| 156 | s = self.location + " " + str(threading.current_thread().name) |
| 157 | for a in args: |
| 158 | s = s + " " + str(a) |
| 159 | print(s, file=sys.__stderr__) |
| 160 | |
| 161 | def register(self, oid, object_): |
| 162 | self.objtable[oid] = object_ |
no test coverage detected