(self)
| 609 | super(SFServices, self).__repr__() |
| 610 | |
| 611 | def Dispose(self): |
| 612 | if self.serviceimplementation == 'basic': |
| 613 | if self.objectreference >= len(ScriptForge.servicesmodules): # Do not dispose predefined module objects |
| 614 | self.ExecMethod(self.vbMethod + self.flgPost, 'Dispose') |
| 615 | self.objectreference = -1 |
| 616 | |
| 617 | def ExecMethod(self, flags = 0, methodname = '', *args): |
| 618 | if flags == 0: |
nothing calls this directly
no test coverage detected