"""A Node is a set of rdatasets.
A node is either a CNAME node or an "other data" node. A CNAME
- node contains only CNAME, RRSIG(CNAME), NSEC, RRSIG(NSEC), NSEC3,
+ node contains only CNAME, KEY, RRSIG(CNAME), NSEC, RRSIG(NSEC), NSEC3,
or RRSIG(NSEC3) rdatasets. An "other data" node contains any
rdataset other than a CNAME or RRSIG(CNAME) rdataset. When
changes are made to a node, the CNAME or "other data" state is
"""Return the rdatasets at *name*, if any.
The returned rdatasets are immutable.
- An empty tuple is returned if the name doesn't exist.
+ An empty list is returned if the name doesn't exist.
"""
return [_ensure_immutable(rds) for rds in self._get_rdatasets(name)]
"""Call *check* before deleting an rdataset.
The function is called with the transaction, the name, the rdatatype,
- covered rdatatype.
+ and the covered rdatatype.
The check function may safely make non-mutating transaction method
calls, but behavior is undefined if mutating transaction methods are