From 9b153bc20fa5d0df40eee06f0700e20bd4ccec84 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Thu, 30 May 2019 20:22:28 +1000 Subject: rtemstoolkit/host: Make the load() public. --- rtemstoolkit/host.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'rtemstoolkit') diff --git a/rtemstoolkit/host.py b/rtemstoolkit/host.py index 5319c92..01aae07 100644 --- a/rtemstoolkit/host.py +++ b/rtemstoolkit/host.py @@ -42,7 +42,7 @@ is_windows = False platform = None name = None -def _load(): +def load(): global is_windows global platform @@ -83,11 +83,11 @@ def _load(): raise error.general('failed to load %s host support' % (name)) def cpus(): - _load() + load() return platform.cpus() def overrides(): - _load() + load() return platform.overrides() def label(mode = 'all'): @@ -107,7 +107,7 @@ def label(mode = 'all'): if __name__ == '__main__': import pprint print('Python\'s OS name: %s' % (os.name)) - _load() + load() print('Name : %s' % (name)) if is_windows: status = 'Yes' -- cgit v1.2.3