mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-10 17:40:58 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@933 e7d03fd6-7b0d-0410-9947-9c21f3af8025
61 lines
1.5 KiB
Python
61 lines
1.5 KiB
Python
# -*- coding: iso-8859-1 -*-
|
|
# $Id$
|
|
#
|
|
# This file is part of the pydns project.
|
|
# Homepage: http://pydns.sourceforge.net
|
|
#
|
|
# This code is covered by the standard Python License.
|
|
#
|
|
|
|
# __init__.py for DNS class.
|
|
|
|
__version__ = '2.3.0'
|
|
|
|
import Type,Opcode,Status,Class
|
|
from Base import DnsRequest, DNSError, DiscoverNameServers
|
|
from Lib import DnsResult
|
|
Error=DNSError
|
|
from lazy import *
|
|
Request = DnsRequest
|
|
Result = DnsResult
|
|
|
|
#
|
|
# $Log$
|
|
# Revision 1.7 2003/07/04 14:23:22 calvin
|
|
# add coding line
|
|
#
|
|
# Revision 1.6 2003/01/05 17:52:53 calvin
|
|
# fix
|
|
#
|
|
# Revision 1.5 2003/01/05 17:39:19 calvin
|
|
# pychecker fixes
|
|
#
|
|
# Revision 1.4 2002/11/26 23:27:43 calvin
|
|
# update to Python >= 2.2.1
|
|
#
|
|
# Revision 1.8 2002/05/06 06:17:49 anthonybaxter
|
|
# found that the old README file called itself release 2.2. So make
|
|
# this one 2.3...
|
|
#
|
|
# Revision 1.7 2002/05/06 06:16:15 anthonybaxter
|
|
# make some sort of reasonable version string. releasewards ho!
|
|
#
|
|
# Revision 1.6 2002/03/19 13:05:02 anthonybaxter
|
|
# converted to class based exceptions (there goes the python1.4 compatibility :)
|
|
#
|
|
# removed a quite gross use of 'eval()'.
|
|
#
|
|
# Revision 1.5 2002/03/19 12:41:33 anthonybaxter
|
|
# tabnannied and reindented everything. 4 space indent, no tabs.
|
|
# yay.
|
|
#
|
|
# Revision 1.4 2001/11/26 17:57:51 stroeder
|
|
# Added __version__
|
|
#
|
|
# Revision 1.3 2001/08/09 09:08:55 anthonybaxter
|
|
# added identifying header to top of each file
|
|
#
|
|
# Revision 1.2 2001/07/19 06:57:07 anthony
|
|
# cvs keywords added
|
|
#
|
|
#
|