diff options
author | Bob Halley <halley@dnspython.org> | 2021-10-10 16:57:37 -0700 |
---|---|---|
committer | Bob Halley <halley@dnspython.org> | 2021-10-10 16:57:37 -0700 |
commit | f8bd3357c0cc65b9dd20576c5891bbcd345766d3 (patch) | |
tree | c168d16b72adedb70648ebe6e75c6af3318f7302 | |
parent | 31c71ecb42a6dca595ad8804985fd058761bd883 (diff) | |
download | dnspython-f8bd3357c0cc65b9dd20576c5891bbcd345766d3.tar.gz |
fix typo and improve dns.message.Message.is_response() doc string
-rw-r--r-- | dns/message.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dns/message.py b/dns/message.py index 2a7565a..6fa90ca 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``. """ |