(self, *args)
| 63 | return self |
| 64 | |
| 65 | def __exit__(self, *args): |
| 66 | self.append(self._stringio.getvalue()) |
| 67 | del self._stringio # free up some memory |
| 68 | sys.stdout = self._stdout |
| 69 | |
| 70 | |
| 71 | def only_int_check(val): |
nothing calls this directly
no outgoing calls
no test coverage detected