You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
394 B
11 lines
394 B
from typing import List, Optional
|
|
from . import rdataset, rdatatype
|
|
|
|
class RRset(rdataset.Rdataset):
|
|
def __init__(self, name, rdclass : int , rdtype : int, covers=rdatatype.NONE,
|
|
deleting : Optional[int] =None) -> None:
|
|
self.name = name
|
|
self.deleting = deleting
|
|
def from_text(name : str, ttl : int, rdclass : str, rdtype : str, *text_rdatas : str):
|
|
...
|