Merge topic 'sphinx-python3'

d55671ad Utilities/Sphinx: Fix cmake domain document removal with python3
This commit is contained in:
Brad King 2014-04-24 09:24:59 -04:00 committed by CMake Topic Stage
commit 3c8226e590
1 changed files with 4 additions and 1 deletions

View File

@ -308,9 +308,12 @@ class CMakeDomain(Domain):
}
def clear_doc(self, docname):
to_clear = set()
for fullname, (fn, _) in self.data['objects'].items():
if fn == docname:
del self.data['objects'][fullname]
to_clear.add(fullname)
for fullname in to_clear:
del self.data['objects'][fullname]
def resolve_xref(self, env, fromdocname, builder,
typ, target, node, contnode):