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