From a5b4ddd1e960392eb10057703804751f8e727ae5 Mon Sep 17 00:00:00 2001 From: Griatch Date: Mon, 20 Oct 2014 19:55:06 +0200 Subject: [PATCH] Adding minor doc update. --- src/utils/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/utils.py b/src/utils/utils.py index 7ea45d35f..cef6cad9c 100644 --- a/src/utils/utils.py +++ b/src/utils/utils.py @@ -778,7 +778,8 @@ def mod_import(module): def all_from_module(module): """ - Return all global-level variables from a module as a dict + Return all global-level variables from a module as a dict. + Ignores modules and variable names starting with an underscore. """ mod = mod_import(module) if not mod: