Merge branch 'sphinx-python3' into release

This commit is contained in:
Brad King 2014-04-24 09:26:41 -04:00
commit 20b46a09e3
1 changed files with 4 additions and 1 deletions

View File

@ -290,9 +290,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):