home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- import dns.rdtypes.mxbase as dns
-
- class AFSDB(dns.rdtypes.mxbase.UncompressedMX):
-
- def get_subtype(self):
- return self.preference
-
-
- def set_subtype(self, subtype):
- self.preference = subtype
-
- subtype = property(get_subtype, set_subtype)
-
- def get_hostname(self):
- return self.exchange
-
-
- def set_hostname(self, hostname):
- self.exchange = hostname
-
- hostname = property(get_hostname, set_hostname)
-
-