From b4ccb82ea76b98457d9dc59424632ca412511ed4 Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Wed, 15 Apr 2026 11:21:40 -0400 Subject: [Python API] Replace bare "except:" with "except Exception:" to fix signal propagation --- python/fileaccessor.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'python/fileaccessor.py') diff --git a/python/fileaccessor.py b/python/fileaccessor.py index b35a362c..a910c8c0 100644 --- a/python/fileaccessor.py +++ b/python/fileaccessor.py @@ -49,7 +49,7 @@ class FileAccessor: def _get_length(self, ctxt): try: return self.get_length() - except: + except Exception: log_error_for_exception("Unhandled Python exception in FileAccessor._get_length") return 0 @@ -62,7 +62,7 @@ class FileAccessor: data = data[0:length] ctypes.memmove(dest, data, len(data)) return len(data) - except: + except Exception: log_error_for_exception("Unhandled Python exception in FileAccessor._read") return 0 @@ -71,7 +71,7 @@ class FileAccessor: data = ctypes.create_string_buffer(length) ctypes.memmove(data, src, length) return self.write(offset, data.raw) - except: + except Exception: log_error_for_exception("Unhandled Python exception in FileAccessor._write") return 0 -- cgit v1.3.1