示例#1
0
 def __init__(self, values=None):
     # type: (Any) -> None
     self.odict = ordereddict()
     MutableSet.__init__(self)
     if values is not None:
         self |= values  # type: ignore
示例#2
0
文件: comments.py 项目: key4hep/spack
 def __init__(self, values=None):
     self.odict = ordereddict()
     MutableSet.__init__(self)
     if values is not None:
         self |= values