diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2023-04-10 22:45:10 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2023-04-10 22:45:10 -0400 |
| commit | 378f5264f3700c3d177417effddb95890299477e (patch) | |
| tree | 11b5e49821c28c29f483e21328a02cc82d91d57c /python | |
| parent | 1f24ad499e965b9ea8a4175f67c60a37268dafc9 (diff) | |
add help for windows python console, resolves #4210
Diffstat (limited to 'python')
| -rw-r--r-- | python/scriptingprovider.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/scriptingprovider.py b/python/scriptingprovider.py index e18a906a..2dae17fa 100644 --- a/python/scriptingprovider.py +++ b/python/scriptingprovider.py @@ -36,6 +36,10 @@ from pathlib import Path from typing import Generator, Optional, List, Tuple, Dict from typing import Type as TypeHintType +# Just windows things... +if sys.platform == "win32": + from pydoc import help + # Binary Ninja components import binaryninja from . import bncompleter |
