| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | binary -> bytes, text -> str | Bob Halley | 2020-05-09 | 4 | -11/+11 |
| * | more documentation | Bob Halley | 2020-05-09 | 10 | -247/+423 |
| * | add license.rst | Bob Halley | 2020-05-08 | 1 | -0/+6 |
| * | add license | Bob Halley | 2020-05-08 | 1 | -0/+1 |
| * | remove year | Bob Halley | 2020-05-08 | 1 | -1/+1 |
| * | update doco author and copyright info | Bob Halley | 2020-05-08 | 1 | -2/+2 |
| * | add idna_codec doco to from_text_list() | Bob Halley | 2020-05-08 | 1 | -0/+4 |
| * | in doco, text->str, binary->bytes | Bob Halley | 2020-05-08 | 17 | -80/+80 |
| * | remove python 2vs3 section | Bob Halley | 2020-05-08 | 2 | -19/+0 |
| * | add dns.query.https | Bob Halley | 2020-05-08 | 1 | -2/+7 |
| * | remove send_https() as the send/receive split is too hard for HTTPS and it is... | Bob Halley | 2020-05-08 | 2 | -29/+1 |
| * | add sphinx to pyproject.toml | Bob Halley | 2020-05-07 | 2 | -2/+3 |
| * | Merge pull request #468 from kimbo/kl/extras-install | Bob Halley | 2020-05-07 | 2 | -7/+16 |
| |\ |
|
| | * | standard way to install extras | kimbo | 2020-05-07 | 1 | -3/+7 |
| | * | match setup.py's extra_requires functionality | kimbo | 2020-05-07 | 1 | -4/+9 |
| |/ |
|
| * | python>=3.6 | Bob Halley | 2020-05-07 | 1 | -1/+1 |
| * | Merge pull request #467 from kimbo/kl/installation-fix | Bob Halley | 2020-05-07 | 1 | -0/+3 |
| |\ |
|
| | * | make dnspython installable with pip | kimbo | 2020-05-07 | 1 | -0/+3 |
| |/ |
|
| * | 3.6 or later required; mention DoH in installation doc | Bob Halley | 2020-05-07 | 2 | -4/+7 |
| * | document installing optional packages | Bob Halley | 2020-05-07 | 1 | -0/+10 |
| * | Document dns.message.from_text() blank line behavior [Issue #354]. | Bob Halley | 2020-05-07 | 1 | -0/+6 |
| * | Python 3.6 or later is required. | Bob Halley | 2020-05-07 | 4 | -14/+3 |
| * | start flake8 support | Bob Halley | 2020-05-04 | 3 | -1/+6 |
| * | Improve TXT records in example zone. | Brian Wellington | 2020-05-04 | 4 | -11/+19 |
| * | 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 |
| * | Do not lose scope info. [Issue #283] | Bob Halley | 2020-05-04 | 1 | -2/+5 |
| * | Ignore scopes in dns.inet.* | Bob Halley | 2020-05-04 | 1 | -3/+3 |
| * | In cases where we care that something is just an IPv4 or IPv6 address, | Bob Halley | 2020-05-04 | 4 | -22/+20 |
| * | Add an ignore_scope option to dns.ipv6.inet_aton(). | Bob Halley | 2020-05-04 | 2 | -1/+29 |
| * | IDNA support for zones, messages, names in rdata, rrsets, and rdatasets. | Bob Halley | 2020-05-03 | 11 | -20/+142 |
| * | add IDNA codec parameter to dns.rdata.from_text() type signature. | Bob Halley | 2020-05-03 | 1 | -2/+4 |
| * | Add IDNA codec support to tokenizer and dns.rdata.from_text() | Bob Halley | 2020-05-03 | 3 | -4/+35 |
| * | remove backwards compatibility for something deleted 10 years ago | Bob Halley | 2020-05-03 | 1 | -16/+0 |
| * | more things to make mypy happier | Bob Halley | 2020-05-03 | 6 | -15/+12 |
| * | finish comment | Bob Halley | 2020-05-03 | 1 | -1/+2 |
| * | fix indentation error after tokenizer refactoring | Bob Halley | 2020-05-03 | 1 | -1/+1 |
| * | Do not double-UTF-8 encode escapes in TXT-like records. [Issue #321] | Bob Halley | 2020-05-03 | 4 | -24/+91 |
| * | pytest make targets | Bob Halley | 2020-05-02 | 2 | -1/+2 |
| * | de-lint: remove unused import | Bob Halley | 2020-05-02 | 1 | -1/+0 |
| * | Merge pull request #461 from bwelling/contextlib | Bob Halley | 2020-05-02 | 5 | -126/+68 |
| |\ |
|
| | * | Use context managers to simplify code. | Brian Wellington | 2020-05-01 | 5 | -126/+68 |
| * | | Update license descriptor to the ISC license. | Bob Halley | 2020-05-02 | 1 | -1/+1 |
| |/ |
|
| * | HIP was not doing relativize_to | Bob Halley | 2020-05-01 | 1 | -2/+1 |
| * | Add as_name(), allowing an already read token to be interpreted a name. | Bob Halley | 2020-05-01 | 1 | -4/+13 |
| * | add missing type declarations | Bob Halley | 2020-05-01 | 2 | -0/+4 |
| * | make all shebangs python3 | Bob Halley | 2020-05-01 | 10 | -10/+10 |
| * | remove spurious old-division pylint warning; remove unneeded float casts | Bob Halley | 2020-05-01 | 1 | -4/+8 |
| * | fix lingering unguarded requests imports | Bob Halley | 2020-05-01 | 1 | -3/+4 |
| * | In library code, replace from io import BytesIO (or StringIO) with import io | Bob Halley | 2020-05-01 | 10 | -28/+31 |