132
132
override_existing=False):
133
133
"""Register a new object to be loaded on request.
136
135
:param module_name: The python path to the module. Such as 'os.path'.
137
136
:param member_name: The member of the module to return. If empty or
138
137
None, get() will return the module itself.
139
138
:param help: Help text for this entry. This may be a string or
144
141
:param override_existing: If True, replace the existing object
145
142
with the new one. If False, if there is already something
146
143
registered with the same key, raise a KeyError