Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 705 Bytes

File metadata and controls

29 lines (18 loc) · 705 Bytes

The dns.name.Name Class and Predefined Names

.. autoclass:: dns.name.Name
   :members:
   :inherited-members:

   .. attribute:: labels

      A tuple of ``bytes`` in DNS wire format specifying the DNS
      labels in the name, in order from least-significant label
      (i.e. farthest from the origin) to most-significant label.

   .. method:: __init__(labels)

      Initialize a name using *labels*, an iterable of ``bytes`` or ``str``.

.. data:: dns.name.root

   The root name, i.e. ``dns.name.Name([b''])``.

.. data:: dns.name.empty

   The empty name, i.e. ``dns.name.Name([])``.

.. autoclass:: dns.name.NameRelation
   :members: