Belle II Software  light-2403-persian
Basf2Domain Class Reference
Inheritance diagram for Basf2Domain:
Collaboration diagram for Basf2Domain:

Public Member Functions

def clear_doc (self, docname)
 

Detailed Description

basf2 Software Domain

Definition at line 121 of file basf2domain.py.

Member Function Documentation

◆ clear_doc()

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

Definition at line 149 of file basf2domain.py.

149  def clear_doc(self, docname):
150  """Remove the existing domain data for a given document name"""
151  for t in "modules", "variables":
152  try:
153  for name, (doc, target) in list(self.data[t].items()):
154  if doc == docname:
155  del self.data[t][name]
156  except Exception:
157  pass
158 

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