MCPcopy Create free account
hub / github.com/Kitware/CMake / clear_doc

Method clear_doc

Utilities/Sphinx/cmake.py:692–698  ·  view source on GitHub ↗
(self, docname)

Source from the content-addressed store, hash-verified

690 }
691
692 def clear_doc(self, docname):
693 to_clear = set()
694 for fullname, obj in self.data['objects'].items():
695 if obj.docname == docname:
696 to_clear.add(fullname)
697 for fullname in to_clear:
698 del self.data['objects'][fullname]
699
700 def merge_domaindata(self, docnames, otherdata):
701 """Merge domaindata from the workers/chunks when they return.

Callers

nothing calls this directly

Calls 1

addMethod · 0.45

Tested by

no test coverage detected