(self, obj, methodname, *args)
| 86 | |
| 87 | # call obj.method(*args) without any checks |
| 88 | def checkcall(self, obj, methodname, *args): |
| 89 | obj = self.fixtype(obj) |
| 90 | args = self.fixtype(args) |
| 91 | getattr(obj, methodname)(*args) |
| 92 | |
| 93 | def _get_teststrings(self, charset, digits): |
| 94 | base = len(charset) |
no test coverage detected