From 378f5264f3700c3d177417effddb95890299477e Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Mon, 10 Apr 2023 22:45:10 -0400 Subject: add help for windows python console, resolves #4210 --- python/scriptingprovider.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'python') 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 -- cgit v1.3.1