]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
the abstract wire parse method for Rdata is now from_wire_parser()
authorBob Halley <halley@dnspython.org>
Fri, 31 Jul 2020 14:36:48 +0000 (07:36 -0700)
committerBob Halley <halley@dnspython.org>
Fri, 31 Jul 2020 14:36:48 +0000 (07:36 -0700)
dns/rdata.py

index 0daa08dab05fa85da2a2e6b9a73d171f570b2e98..ea2f1d249a93e0a2b0742e56f564400338154401 100644 (file)
@@ -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):