From: Bob Halley Date: Fri, 31 Jul 2020 14:36:48 +0000 (-0700) Subject: the abstract wire parse method for Rdata is now from_wire_parser() X-Git-Tag: v2.1.0rc1~114 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96429bc53f2912fc8065439c7adac83a87ef806b;p=thirdparty%2Fdnspython.git the abstract wire parse method for Rdata is now from_wire_parser() --- diff --git a/dns/rdata.py b/dns/rdata.py index 0daa08da..ea2f1d24 100644 --- a/dns/rdata.py +++ b/dns/rdata.py @@ -303,7 +303,7 @@ class Rdata: raise NotImplementedError # pragma: no cover @classmethod - def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin=None): + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): raise NotImplementedError # pragma: no cover def replace(self, **kwargs):