]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
more message doco
authorBob Halley <halley@dnspython.org>
Sat, 14 Jan 2017 18:30:41 +0000 (10:30 -0800)
committerBob Halley <halley@dnspython.org>
Sat, 14 Jan 2017 18:30:41 +0000 (10:30 -0800)
dns/message.py
doc/message.rst

index b403d70f84d25f35f1e69b76f1d533077ed56ffa..51c3cfa56e9d5e3e4168a363c301fd00fb100f85 100644 (file)
@@ -503,7 +503,7 @@ class Message(object):
 
         *options*, a list of ``dns.edns.Option`` objects or ``None``, the EDNS
         options.
-o        """
+        """
 
         if edns is None or edns is False:
             edns = -1
index ee34b474897da8656fc993e07796c44d98024d4b..2404e2f86a663da26940f7cd4d89844208162058 100644 (file)
@@ -4,6 +4,12 @@
 DNS Messages
 ============
 
+Objects of the dns.message.Message class represent a single DNS message.
+
+The module provides tools for constructing and manipulating messages.
+TSIG signatures and EDNS are also supported.  Messages can be dumped to
+a textual form, and also read from that form.
+
 .. toctree::
 
    message-class