From f8bd3357c0cc65b9dd20576c5891bbcd345766d3 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Sun, 10 Oct 2021 16:57:37 -0700 Subject: [PATCH] fix typo and improve dns.message.Message.is_response() doc string --- dns/message.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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``. """ -- 2.47.3