Belle II Software development
Basf2Domain Class Reference
Inheritance diagram for Basf2Domain:

Public Member Functions

 clear_doc (self, docname)
 

Detailed Description

basf2 Software Domain

Definition at line 143 of file basf2domain.py.

Member Function Documentation

◆ clear_doc()

clear_doc ( self,
docname )
Remove the existing domain data for a given document name

Definition at line 171 of file basf2domain.py.

171 def clear_doc(self, docname):
172 """Remove the existing domain data for a given document name"""
173 for t in "modules", "variables":
174 try:
175 for name, (doc, target) in list(self.data[t].items()):
176 if doc == docname:
177 del self.data[t][name]
178 except Exception:
179 pass
180

The documentation for this class was generated from the following file: