Add `obj` to the list of attributes in this net under the given `name`. Attributes are user-defined objects and have no pre-defined semantics.
(self, name, obj)
| 1582 | self.Print(blob, []) |
| 1583 | |
| 1584 | def add_attribute(self, name, obj): |
| 1585 | """ |
| 1586 | Add `obj` to the list of attributes in this net under the given `name`. |
| 1587 | Attributes are user-defined objects and have no pre-defined semantics. |
| 1588 | """ |
| 1589 | self._attr_dict[name].append(obj) |
| 1590 | |
| 1591 | def get_attributes(self, name): |
| 1592 | """ |
no test coverage detected