From af815cd2e1ee9124288c9f73ef8f1254252643f3 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Thu, 6 Nov 2025 16:28:23 -0500 Subject: fix missing newlines breaking lists --- python/binaryview.py | 2 ++ python/transform.py | 1 + 2 files changed, 3 insertions(+) (limited to 'python') diff --git a/python/binaryview.py b/python/binaryview.py index 69dbc93f..aab64590 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -2613,6 +2613,7 @@ class MemoryMap: - **UnbackedMemoryRegion**: Region not backed by any data source (requires `length` to be set). The `source` parameter determines the type: + - `os.PathLike` or `str`: File path to be loaded into memory as a `DataMemoryRegion`. - `bytes` or `bytearray`: Directly loaded into memory as a `DataMemoryRegion`. - `databuffer.DataBuffer`: Loaded as a `DataMemoryRegion`. @@ -5207,6 +5208,7 @@ class BinaryView: analysis to finish before returning. **Thread Restrictions**: + - **Worker Threads**: This function cannot be called from a worker thread. If called from a worker thread, an error will be logged, and the function will return immediately. - **UI Threads**: This function cannot be called from a UI thread. If called from a UI thread, an error will be logged, and diff --git a/python/transform.py b/python/transform.py index 276b005d..2b263911 100644 --- a/python/transform.py +++ b/python/transform.py @@ -446,6 +446,7 @@ class TransformContext: transformation state, and relationships to parent/child contexts. Each context can have: + - Input data (BinaryView) - Transform information (name, parameters, results) - File selection state (available_files, requested_files) -- cgit v1.3.1