(self, ctxt, offset)
| 3782 | return ModificationStatus.Original |
| 3783 | |
| 3784 | def _is_valid_offset(self, ctxt, offset): |
| 3785 | try: |
| 3786 | return self.perform_is_valid_offset(offset) |
| 3787 | except: |
| 3788 | log_error(traceback.format_exc()) |
| 3789 | return False |
| 3790 | |
| 3791 | def _is_offset_readable(self, ctxt, offset): |
| 3792 | try: |
nothing calls this directly
no test coverage detected