(self, nodeid)
| 181 | return child_el |
| 182 | |
| 183 | def _node_to_string(self, nodeid): |
| 184 | if not isinstance(nodeid, ua.NodeId): |
| 185 | nodeid = nodeid.nodeid |
| 186 | |
| 187 | if nodeid.NamespaceIndex in self._addr_idx_to_xml_idx: |
| 188 | nodeid = copy(nodeid) |
| 189 | nodeid.NamespaceIndex = self._addr_idx_to_xml_idx[nodeid.NamespaceIndex] |
| 190 | return nodeid.to_string() |
| 191 | |
| 192 | def _bname_to_string(self, bname): |
| 193 | if bname.NamespaceIndex in self._addr_idx_to_xml_idx: |
no test coverage detected