| Commit message (Expand) | Author | Age | Files | Lines |
| * | Remove more unneeded backwards compat, _winreg -> winreg | Bob Halley | 2020-06-05 | 1 | -30/+27 |
| * | Minor Python 3 cleanups. | Brian Wellington | 2020-06-03 | 1 | -11/+10 |
| * | the prior fix for exception handling was still not right, missing a continue | Bob Halley | 2020-05-29 | 1 | -0/+1 |
| * | Fix resolve() NoAnswer problems from [Issue #488] | Bob Halley | 2020-05-28 | 1 | -4/+12 |
| * | further tighten resolve() default settings | Bob Halley | 2020-05-27 | 1 | -6/+8 |
| * | fix None pointers in LRU cache sentinel | Bob Halley | 2020-05-23 | 1 | -2/+3 |
| * | revision of truncation handling | Bob Halley | 2020-05-22 | 1 | -1/+2 |
| * | add NXDOMAIN caching | Bob Halley | 2020-05-21 | 1 | -43/+60 |
| * | pop() with no arguements means last, but I used it intending first | Bob Halley | 2020-05-21 | 1 | -2/+2 |
| * | Remove dns.rdata{type,class}.to_enum. | Brian Wellington | 2020-05-21 | 1 | -2/+2 |
| * | move raise_on_no_error out of Answer | Bob Halley | 2020-05-19 | 1 | -10/+6 |
| * | add missing backoff to next_nameserver() retry_with_tcp case | Bob Halley | 2020-05-19 | 1 | -1/+1 |
| * | use to_enum() | Bob Halley | 2020-05-19 | 1 | -4/+2 |
| * | It is self.resolver.retry_servfail, not self.retry_servfail; where were you l... | Bob Halley | 2020-05-19 | 1 | -1/+1 |
| * | add resolve_address() helper at module levelresrefactor | Bob Halley | 2020-05-19 | 1 | -0/+10 |
| * | linting | Bob Halley | 2020-05-19 | 1 | -0/+12 |
| * | refactor resolver, extracting all business logic | Bob Halley | 2020-05-18 | 1 | -166/+197 |
| * | flake8 linting | Bob Halley | 2020-05-15 | 1 | -17/+20 |
| * | Allow resolver-level control over the defaulting of search (default False). | Bob Halley | 2020-05-15 | 1 | -30/+18 |
| * | Add resolver resolve(), deprecate query(). | Bob Halley | 2020-05-15 | 1 | -34/+81 |
| * | Reharmonize doc style as I think it looks better | Bob Halley | 2020-05-10 | 1 | -2/+4 |
| * | in doco, text->str, binary->bytes | Bob Halley | 2020-05-08 | 1 | -7/+7 |
| * | Fix [Issue #416], EAI_SYSTEM not defined on Windows. | Bob Halley | 2020-05-04 | 1 | -2/+10 |
| * | Grealy simplify our getaddrinfo() implementation by calling the | Bob Halley | 2020-05-04 | 1 | -48/+41 |
| * | more things to make mypy happier | Bob Halley | 2020-05-03 | 1 | -4/+4 |
| * | Use context managers to simplify code. | Brian Wellington | 2020-05-01 | 1 | -37/+15 |
| * | Merge pull request #445 from kimbo/kl/resolv-conf-options | Bob Halley | 2020-04-03 | 1 | -5/+32 |
| |\ |
|
| | * | support for ndots, edns0, timeout resolv.conf opts | kimbo | 2020-04-02 | 1 | -5/+32 |
| * | | Use decorator syntax for properties. | Brian Wellington | 2020-04-03 | 1 | -2/+2 |
| * | | Use public dns.set.Set interface. | Brian Wellington | 2020-04-02 | 1 | -1/+1 |
| |/ |
|
| * | delint | Bob Halley | 2020-03-11 | 1 | -7/+7 |
| * | reverse_query: BUGFIX - ipaddr, not address! | Thomas Ward | 2020-03-09 | 1 | -1/+1 |
| * | Docstring, naming, args/kwargs for reverse_query | Thomas Ward | 2020-03-09 | 1 | -22/+7 |
| * | Docstrings: Update reverse_lookup docstrings | Thomas Ward | 2020-03-09 | 1 | -0/+12 |
| * | Use dns.reversename, extend reverse_lookup args | Thomas Ward | 2020-03-09 | 1 | -17/+11 |
| * | Add a reverse_lookup function to Resolver. | Thomas Ward | 2020-03-09 | 1 | -0/+26 |
| * | DoH cleanup. | Brian Wellington | 2020-01-07 | 1 | -7/+14 |
| * | only allow Resolver.nameservers to be a list | kimbo | 2020-01-06 | 1 | -11/+5 |
| * | make sure Resolver.nameservers is a list or str | kimbo | 2019-12-26 | 1 | -0/+21 |
| * | Handle other parameters | Filip Š | 2019-10-29 | 1 | -1/+1 |
| * | Ignore URLs other than HTTPS | Filip Š | 2019-10-29 | 1 | -0/+2 |
| * | Rename `doh` method to `https` | Filip Š | 2019-10-29 | 1 | -1/+1 |
| * | Merge branch 'master' of https://github.com/rthalley/dnspython into dns-over-... | Filip Š | 2019-09-30 | 1 | -2/+11 |
| |\ |
|
| | * | added nameserver and port to Answer (wip #384) | kimbo | 2019-08-15 | 1 | -2/+11 |
| * | | Add support for DoH | Filip Š | 2019-09-28 | 1 | -19/+25 |
| |/ |
|
| * | specify seconds for lifetime in Resolver.query() | kimbo | 2019-07-24 | 1 | -1/+1 |
| * | For _getaddrinfo(), if AI_ADDRCONFIG or AI_V4MAPPED are specified, raise | Bob Halley | 2019-01-05 | 1 | -1/+4 |
| * | When decoding from wire format, if a message has TC set, raise a Truncated | Bob Halley | 2019-01-05 | 1 | -5/+7 |
| * | If reading /etc/resolv.conf fails, or finds no servers, raise NoResolverConfi... | Bob Halley | 2019-01-05 | 1 | -4/+4 |
| * | Remove _compat module. | Bob Halley | 2018-12-09 | 1 | -8/+6 |