| 35 | |
| 36 | # Create and register classes and functions |
| 37 | class TestClass(object): |
| 38 | def test_method(self, arg): |
| 39 | """Test method's docs. This method truly does very little.""" |
| 40 | self.arg = arg |
| 41 | |
| 42 | serv.register_introspection_functions() |
| 43 | serv.register_instance(TestClass()) |
no outgoing calls
searching dependent graphs…