197
197
:param topic: A string naming the help topic to search for.
198
198
:raises: NoHelpTopic if none of the contexts in search_path have topic.
201
202
for context in self.search_path:
202
203
result.extend(context.get_topics(topic))
204
205
raise errors.NoHelpTopic(topic)