(self, s)
| 81 | return thing |
| 82 | |
| 83 | def testException(self, s): |
| 84 | if s == 'Xception': |
| 85 | raise Xception(1001, s) |
| 86 | elif s == 'throw_undeclared': |
| 87 | raise ValueError('testing undeclared exception') |
| 88 | |
| 89 | def testOneway(self, seconds): |
| 90 | start = time.time() |