[PATCH 2/7] rtemstoolkit/host: Make the load() public.

chrisj at rtems.org chrisj at rtems.org
Sun Jun 9 00:24:57 UTC 2019


From: Chris Johns <chrisj at rtems.org>

---
 rtemstoolkit/host.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

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'
-- 
2.20.1 (Apple Git-117)




More information about the devel mailing list