~ubuntu-branches/ubuntu/gutsy/python-dns/gutsy-security

« back to all changes in this revision

Viewing changes to DNS/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Joerg Wendland
  • Date: 2003-08-20 14:25:29 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20030820142529-3facqpkoslard81q
Tags: 2.3.0-5
* debian/control:
  Use ${python:Depends} for Depends, so that correct Depends are
  generated by dh_python. (closes: Bug#205884)
* debian/python-dns.postinst
  debian/python-dns.prerm:
  Remove these files and let debhelper handle these issues.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: __init__.py,v 1.6 2002/03/19 13:05:02 anthonybaxter Exp $
 
1
# $Id: __init__.py,v 1.8 2002/05/06 06:17:49 anthonybaxter Exp $
2
2
#
3
3
# This file is part of the pydns project.
4
4
# Homepage: http://pydns.sourceforge.net
8
8
 
9
9
# __init__.py for DNS class.
10
10
 
11
 
__version__ = '0.0.1'
 
11
__version__ = '2.3.0'
12
12
 
13
13
import Type,Opcode,Status,Class
14
14
from Base import DnsRequest, DNSError
22
22
 
23
23
#
24
24
# $Log: __init__.py,v $
 
25
# Revision 1.8  2002/05/06 06:17:49  anthonybaxter
 
26
# found that the old README file called itself release 2.2. So make
 
27
# this one 2.3...
 
28
#
 
29
# Revision 1.7  2002/05/06 06:16:15  anthonybaxter
 
30
# make some sort of reasonable version string. releasewards ho!
 
31
#
25
32
# Revision 1.6  2002/03/19 13:05:02  anthonybaxter
26
33
# converted to class based exceptions (there goes the python1.4 compatibility :)
27
34
#