summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* update to 1.15.0python3Bob Halley2016-09-301-1/+1
|
* re-add travis, but exclude the python3 branchBob Halley2016-09-201-0/+24
|
* remove travisBob Halley2016-09-201-6/+0
|
* redirect to dnspythonBob Halley2016-09-20133-20898/+19
|
* revert bad mergeBob Halley2016-05-081-11/+0
|
* Merge pull request #132 from ddellav/python3Bob Halley2016-05-081-0/+11
|\ | | | | Offline Build Process Facilitation
| * Checking for network access and disabling certain tests that require it to ↵David Della Vecchia2015-12-161-0/+11
| | | | | | | | facilitate offline build process.
* | Merge pull request #145 from CoresecSystems/python3Bob Halley2016-03-041-6/+46
|\ \ | | | | | | Fix NameDicts
| * | Fix NameDicts so they keep track of the max_length properly and handle ↵Francisco Izquierdo2016-03-041-6/+46
|/ / | | | | | | things like update properly
* | pass the response to NoAnswer correctlyBob Halley2016-02-211-1/+1
| |
* | rm old READMEBob Halley2016-02-211-564/+0
| |
* | update, add build statusBob Halley2016-02-211-0/+562
| |
* | Import dns.tsigBob Halley2016-02-211-0/+1
| |
* | Set response_time to zero when exceptions occur early.Bob Halley2016-02-211-2/+10
| |
* | remove 3.2Bob Halley2016-01-081-1/+0
| |
* | exit with nonzero status if tests failBob Halley2016-01-081-1/+3
| |
* | add travis for python3Bob Halley2016-01-081-0/+7
|/
* Merge pull request #103 from encukou/py3-recordsBob Halley2015-12-038-0/+81
|\ | | | | Py3: Add missing code for URI and TLSA rrtypes from the python2 branch
| * Add TLSA to exports & copyrights listsPetr Viktorin2015-05-272-0/+2
| |
| * Add URI RR to test data.Bob Halley2015-05-274-0/+4
| |
| * Add URI record type (draft-faltstrom-uri-13)Petr Spacek2015-05-272-0/+75
| |
* | Merge pull request #106 from encukou/deduplicate-testsBob Halley2015-12-034-21/+5
|\ \ | | | | | | Rename tests with duplicate names
| * | Rename tests with duplicate namesPetr Viktorin2015-05-274-21/+5
| |/ | | | | | | | | | | | | Some tests were shadowed by a different test of the same name. Rename to resolve the conflicts. In test_ntoaaton, there were exact duplicates; only keep one of each.
* | Merge pull request #105 from encukou/py3-testsBob Halley2015-12-034-0/+244
|\ \ | | | | | | Py3: Add missing tests
| * | add some LRUCache testsBob Halley2015-05-271-0/+57
| | |
| * | Add rdtypeanyloc tests from the py2 branchPetr Viktorin2015-05-271-0/+68
| | |
| * | Add rdata tests from the py2 branchPetr Viktorin2015-05-271-0/+33
| | |
| * | Add grange tests from the py2 branchPetr Viktorin2015-05-271-0/+86
| |/
* | Merge pull request #104 from encukou/py3-query-timerBob Halley2015-12-031-0/+6
|\ \ | | | | | | Py3: Add query timer
| * | Fix for timing, begin_time is not a function.Mattias Lundberg2015-05-271-1/+1
| | |
| * | Add response time to the response when querying a server.Mattias Lundberg2015-05-271-0/+6
| |/
* | Merge pull request #102 from encukou/py3-pickleBob Halley2015-12-032-0/+14
|\ \ | | | | | | Py3: Implement the pickle protocol for Name objects
| * | Test pickling Name objectsPetr Viktorin2015-05-261-0/+7
| | |
| * | Implement the pickle protocol.Bob Halley2015-05-261-0/+7
| |/
* | Merge pull request #101 from encukou/py3-ecdsaBob Halley2015-12-032-2/+119
|\ \ | | | | | | Add ECDSA to python3 branch
| * | Skip DNSSEC ECDSA tests if there is no python ecdsa package.Petr Spacek2015-05-261-0/+8
| | |
| * | Preliminary Elliptic Curve DNSSEC Validation (requires ecdsa module)Bob Halley2015-05-262-2/+111
| |/
* | Add support for EUI48 and EUI64 RR typesPetr Spacek2015-12-037-0/+357
| |
* | Merge pull request #127 from fcelda/python3Bob Halley2015-11-0210-117/+194
|\ \ | | | | | | CDS/CDNSKEY support
| * | Add support for CDNSKEY record typeJan Vcelak2015-10-319-117/+168
| | |
| * | Add support for CDS record typeJan Vcelak2015-10-317-0/+26
|/ /
* | Merge pull request #126 from kivikakk/bugfix/py3-make_response-tsigBob Halley2015-10-251-1/+1
|\ \ | | | | | | Assign b'' to other_data in make_response when using TSIG.
| * | Assign b'' to other_data in make_response when using TSIG.Yuki Izumi2015-10-241-1/+1
|/ /
* | In python 3, the getaddrinfo 'socktype' parameter was renamed to 'type'Bob Halley2015-10-061-3/+3
| |
* | Fix CAA from_wire()Bob Halley2015-06-132-1/+13
|/
* Merge pull request #97 from encukou/zone-to_fileBob Halley2015-05-212-9/+30
|\ | | | | Fix failing test for Zone.to_file
| * Fix failing test for Zone.to_filePetr Viktorin2015-05-212-9/+30
| | | | | | | | | | | | | | | | | | | | | | | | A fix for https://github.com/rthalley/dnspython/issues/94 Make the to_file method work on string files, unless explicitly told to do binary encoding. Take the line terminator from os, rather than relying on the print function. Change the test to use a text file rather than binary, and add a new test for to_file with a binary file.
* | Merge pull request #98 from encukou/python3-parametrized-exceptionsBob Halley2015-05-213-46/+163
|\ \ | |/ |/| Python3 parametrized exceptions
| * Add information about protocol, request, and response to NoNameservers ↵Petr Spacek2015-05-211-11/+20
| | | | | | | | | | | | | | | | | | | | | | exception. Information about UDP/TCP protocol usage is returned from str(NoNameservers) but request and response variables are intended for application debug logs and are not returned from str(). str() for parametrized version of the exception now returns string like: All nameservers failed to answer the query localhost. IN URI: Server 192.0.2.1 TCP port 53 anwered BADVERS; Server 192.0.2.2 UDP port 53 anwered BADVERS
| * Convert NoNameservers exception to the new DNSException style.Petr Spacek2015-05-211-17/+17
| | | | | | | | | | str() for parametrized version now returns string like: All nameservers failed to answer the query localhost. IN URI: Server 192.0.2.1 anwered BADVERS; Server 192.0.2.55 anwered BADVERS