Adding minor doc update.

This commit is contained in:
Griatch 2014-10-20 19:55:06 +02:00
parent dd937cdcd3
commit a5b4ddd1e9

View file

@ -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: