From: Bob Halley Date: Sun, 10 Oct 2021 23:57:37 +0000 (-0700) Subject: fix typo and improve dns.message.Message.is_response() doc string X-Git-Tag: v2.2.0rc1~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f8bd3357c0cc65b9dd20576c5891bbcd345766d3;p=thirdparty%2Fdnspython.git fix typo and improve dns.message.Message.is_response() doc string --- diff --git a/dns/message.py b/dns/message.py index 2a7565a0..6fa90ca5 100644 --- a/dns/message.py +++ b/dns/message.py @@ -236,7 +236,8 @@ class Message: return not self.__eq__(other) def is_response(self, other): - """Is *other* a response this message? + """Is *other*, also a ``dns.message.Message``, a response to this + message? Returns a ``bool``. """