summaryrefslogtreecommitdiff
path: root/python/binaryview.py
diff options
context:
space:
mode:
authorJordan Wiens <github@psifertex.com>2025-11-06 16:28:23 -0500
committerJordan Wiens <github@psifertex.com>2025-11-10 23:22:35 -0500
commitaf815cd2e1ee9124288c9f73ef8f1254252643f3 (patch)
treecfe14a43326abb52ca3f4b70f210a9623145ca46 /python/binaryview.py
parent1980ffb0e64a686b504449e822d2ab904511cafb (diff)
fix missing newlines breaking lists
Diffstat (limited to 'python/binaryview.py')
-rw-r--r--python/binaryview.py2
1 files changed, 2 insertions, 0 deletions
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