[Python-modules-commits] [dnspython] branch upstream updated (3519406 -> 8d7a975)

Scott Kitterman kitterman at moszumanska.debian.org
Wed May 25 06:39:51 UTC 2016


This is an automated email from the git hooks/post-receive script.

kitterman pushed a change to branch upstream
in repository dnspython.

      from  3519406   Imported Upstream version 1.12.0
       new  8d7a975   Import dnspython_1.13.0.orig.tar.gz

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ChangeLog                                     |  42 ++
 MANIFEST.in                                   |   3 +
 PKG-INFO                                      |  11 +-
 README                                        | 557 --------------------------
 dns/_compat.py                                |  21 +
 dns/dnssec.py                                 | 157 +++++---
 dns/e164.py                                   |  13 +-
 dns/edns.py                                   |  30 +-
 dns/entropy.py                                |  34 +-
 dns/exception.py                              | 104 ++++-
 dns/flags.py                                  |  30 +-
 dns/grange.py                                 |   2 +-
 dns/hash.py                                   |  53 +--
 dns/inet.py                                   |  11 +-
 dns/ipv4.py                                   |  11 +-
 dns/ipv6.py                                   |  54 +--
 dns/message.py                                | 210 +++++-----
 dns/name.py                                   | 269 ++++++++-----
 dns/namedict.py                               |  59 ++-
 dns/node.py                                   |  15 +-
 dns/opcode.py                                 |  31 +-
 dns/query.py                                  |  93 +++--
 dns/rcode.py                                  |  36 +-
 dns/rdata.py                                  | 172 ++++----
 dns/rdataclass.py                             |  46 ++-
 dns/rdataset.py                               |  51 ++-
 dns/rdatatype.py                              | 171 ++++----
 dns/rdtypes/ANY/AFSDB.py                      |   2 +
 dns/rdtypes/ANY/CAA.py                        |  74 ++++
 tests/Makefile => dns/rdtypes/ANY/CDNSKEY.py  |  14 +-
 dns/rdtypes/ANY/{DS.py => CDS.py}             |   7 +-
 dns/rdtypes/ANY/CERT.py                       |  67 ++--
 dns/rdtypes/ANY/CNAME.py                      |   3 +-
 dns/rdtypes/ANY/DLV.py                        |   3 +-
 dns/rdtypes/ANY/DNAME.py                      |   5 +-
 dns/rdtypes/ANY/DNSKEY.py                     | 127 +-----
 dns/rdtypes/ANY/DS.py                         |   3 +-
 tests/Makefile => dns/rdtypes/ANY/EUI48.py    |  20 +-
 tests/Makefile => dns/rdtypes/ANY/EUI64.py    |  20 +-
 dns/rdtypes/ANY/GPOS.py                       |  70 ++--
 dns/rdtypes/ANY/HINFO.py                      |  46 ++-
 dns/rdtypes/ANY/HIP.py                        |  71 +---
 dns/rdtypes/ANY/ISDN.py                       |  46 ++-
 dns/rdtypes/ANY/LOC.py                        |  96 +++--
 dns/rdtypes/ANY/MX.py                         |   3 +-
 dns/rdtypes/ANY/NS.py                         |   3 +-
 dns/rdtypes/ANY/NSEC.py                       |  48 ++-
 dns/rdtypes/ANY/NSEC3.py                      | 106 ++---
 dns/rdtypes/ANY/NSEC3PARAM.py                 |  44 +-
 dns/rdtypes/ANY/PTR.py                        |   3 +-
 dns/rdtypes/ANY/RP.py                         |  26 +-
 dns/rdtypes/ANY/RRSIG.py                      |  41 +-
 dns/rdtypes/ANY/RT.py                         |   3 +-
 dns/rdtypes/ANY/SOA.py                        |  39 +-
 dns/rdtypes/ANY/SPF.py                        |   3 +-
 dns/rdtypes/ANY/SSHFP.py                      |  32 +-
 dns/rdtypes/ANY/TLSA.py                       |  34 +-
 dns/rdtypes/ANY/TXT.py                        |   3 +-
 dns/rdtypes/ANY/URI.py                        |  81 ++++
 dns/rdtypes/ANY/X25.py                        |  31 +-
 dns/rdtypes/ANY/__init__.py                   |   4 +
 dns/rdtypes/IN/A.py                           |  22 +-
 dns/rdtypes/IN/AAAA.py                        |  22 +-
 dns/rdtypes/IN/APL.py                         |  38 +-
 dns/rdtypes/IN/DHCID.py                       |  26 +-
 dns/rdtypes/IN/IPSECKEY.py                    |  50 +--
 dns/rdtypes/IN/KX.py                          |   3 +-
 dns/rdtypes/IN/NAPTR.py                       |  57 ++-
 dns/rdtypes/IN/NSAP.py                        |  26 +-
 dns/rdtypes/IN/NSAP_PTR.py                    |   3 +-
 dns/rdtypes/IN/PX.py                          |  34 +-
 dns/rdtypes/IN/SRV.py                         |  28 +-
 dns/rdtypes/IN/WKS.py                         |  45 +--
 dns/rdtypes/__init__.py                       |   1 +
 dns/rdtypes/{ANY/DNSKEY.py => dnskeybase.py}  |  46 +--
 dns/rdtypes/dsbase.py                         |  34 +-
 dns/rdtypes/euibase.py                        |  71 ++++
 dns/rdtypes/mxbase.py                         |  42 +-
 dns/rdtypes/nsbase.py                         |  31 +-
 dns/rdtypes/txtbase.py                        |  34 +-
 dns/renderer.py                               |  19 +-
 dns/resolver.py                               | 339 ++++++++++------
 dns/reversename.py                            |  21 +-
 dns/rrset.py                                  |  18 +-
 dns/set.py                                    |  14 +-
 dns/tokenizer.py                              |  65 +--
 dns/tsig.py                                   |  82 ++--
 dns/tsigkeyring.py                            |   6 +-
 dns/ttl.py                                    |  20 +-
 dns/update.py                                 |  78 ++--
 dns/version.py                                |   4 +-
 dns/wiredata.py                               |  27 +-
 dns/zone.py                                   | 178 ++++----
 PKG-INFO => dnspython.egg-info/PKG-INFO       |  11 +-
 dnspython.egg-info/SOURCES.txt                | 135 +++++++
 dnspython.egg-info/dependency_links.txt       |   1 +
 dnspython.egg-info/top_level.txt              |   1 +
 examples/ddns.py                              |  14 +-
 examples/reverse.py                           |   6 +-
 setup.cfg                                     |   5 +
 setup.py                                      |  17 +-
 tests/__init__.py                             |   0
 tests/example                                 |  14 +
 tests/example1.good                           |   9 +
 tests/example2.good                           |   9 +
 tests/example3.good                           |   9 +
 tests/test_bugs.py                            |  26 +-
 tests/test_dnssec.py                          |   7 +-
 tests/test_exceptions.py                      |  65 +++
 tests/test_flags.py                           |   5 +-
 tests/test_generate.py                        | 155 +++----
 tests/test_grange.py                          |   6 +-
 tests/test_message.py                         |  28 +-
 tests/test_name.py                            | 164 ++++----
 tests/test_namedict.py                        |   5 +-
 tests/test_ntoaaton.py                        |  91 +++--
 dns/rdtypes/ANY/SPF.py => tests/test_rdata.py |  24 +-
 tests/test_rdtypeandclass.py                  |   5 +-
 tests/test_rdtypeanydnskey.py                 |   5 +-
 tests/test_rdtypeanyeui.py                    | 224 +++++++++++
 tests/test_rdtypeanyloc.py                    |   5 +-
 tests/test_resolver.py                        |  12 +-
 tests/test_rrset.py                           |   5 +-
 tests/test_set.py                             |   5 +-
 tests/test_tokenizer.py                       |  14 +
 tests/test_update.py                          |   8 +-
 tests/test_zone.py                            |  79 ++--
 tests/utest.py                                |   8 +-
 128 files changed, 3360 insertions(+), 2765 deletions(-)
 create mode 100644 MANIFEST.in
 delete mode 100644 README
 create mode 100644 dns/_compat.py
 create mode 100644 dns/rdtypes/ANY/CAA.py
 copy tests/Makefile => dns/rdtypes/ANY/CDNSKEY.py (72%)
 copy dns/rdtypes/ANY/{DS.py => CDS.py} (92%)
 copy tests/Makefile => dns/rdtypes/ANY/EUI48.py (60%)
 copy tests/Makefile => dns/rdtypes/ANY/EUI64.py (59%)
 create mode 100644 dns/rdtypes/ANY/URI.py
 copy dns/rdtypes/{ANY/DNSKEY.py => dnskeybase.py} (79%)
 create mode 100644 dns/rdtypes/euibase.py
 copy PKG-INFO => dnspython.egg-info/PKG-INFO (73%)
 create mode 100644 dnspython.egg-info/SOURCES.txt
 create mode 100644 dnspython.egg-info/dependency_links.txt
 create mode 100644 dnspython.egg-info/top_level.txt
 create mode 100644 setup.cfg
 create mode 100644 tests/__init__.py
 create mode 100644 tests/test_exceptions.py
 copy dns/rdtypes/ANY/SPF.py => tests/test_rdata.py (58%)
 create mode 100644 tests/test_rdtypeanyeui.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/dnspython.git



More information about the Python-modules-commits mailing list