(self, key=None)
| 857 | self._protect_memory = status |
| 858 | |
| 859 | def open_memory_scope(self, key=None): |
| 860 | self.mem_protect_stack.append(self._protect_memory) |
| 861 | self.protect_memory(key or object()) |
| 862 | |
| 863 | def close_memory_scope(self): |
| 864 | self.protect_memory(self.mem_protect_stack.pop()) |
nothing calls this directly
no test coverage detected