| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | test name pickling | Bob Halley | 2020-08-13 | 1 | -0/+7 |
| | | |||||
| * | more reversename coverage | Bob Halley | 2020-07-25 | 1 | -0/+5 |
| | | |||||
| * | cover compression table too big branch | Bob Halley | 2020-07-23 | 1 | -0/+24 |
| | | |||||
| * | Improve name coverage slightly by testing the uts_46 branch in 2008 decode. | Bob Halley | 2020-07-23 | 1 | -6/+24 |
| | | | | | | | I'm not sure how useful in practice this is, as we don't offer a codec configuration default for it, but I'm not sure you'd never do it, and the existing code was in the wrong order. | ||||
| * | improve name coverage | Bob Halley | 2020-07-03 | 1 | -0/+4 |
| | | |||||
| * | increase name test coverage | Bob Halley | 2020-06-30 | 1 | -0/+66 |
| | | |||||
| * | improve coverage | Bob Halley | 2020-06-19 | 1 | -0/+71 |
| | | |||||
| * | improve e164 coverage | Bob Halley | 2020-06-19 | 1 | -0/+5 |
| | | |||||
| * | Test dns.name.__le__ and __ge__. | Brian Wellington | 2020-06-17 | 1 | -0/+4 |
| | | |||||
| * | Test `dns.name.from_unicode` with escapes. | Brian Wellington | 2020-06-17 | 1 | -0/+5 |
| | | |||||
| * | tests: remove forgotten prints | Petr Špaček | 2020-05-28 | 1 | -1/+0 |
| | | |||||
| * | increase test coverage for various things | Bob Halley | 2020-05-23 | 1 | -0/+24 |
| | | |||||
| * | Merge pull request #460 from bwelling/remove-future | Bob Halley | 2020-05-01 | 1 | -2/+0 |
| |\ | | | | | Remove "from __future__ import" statements. | ||||
| | * | Remove "from __future__ import" statements. | Brian Wellington | 2020-05-01 | 1 | -2/+0 |
| | | | | | | | | | None of these are needed anymore. | ||||
| * | | also use skipUnless for tests that require IDNA2008 | Daniel Lenski | 2020-04-30 | 1 | -29/+31 |
| |/ | |||||
| * | Add alternate origin support to dns.reversename. | Brian Wellington | 2020-04-29 | 1 | -0/+26 |
| | | |||||
| * | Improve assertion checking. | Brian Wellington | 2020-03-18 | 1 | -54/+63 |
| | | | | | | This replaces lots of self.assertTrue() assertions with more specific assertions, such as replacing assertTrue(x == y) with assertEqual(x, y). | ||||
| * | MNT: use raw string for invalid escape sequence | Thomas A Caswell | 2019-10-30 | 1 | -2/+2 |
| | | |||||
| * | TST: fix failUnlessRaises -> assertRaises deprecation | Thomas A Caswell | 2019-10-30 | 1 | -25/+25 |
| | | | | | failUnlessRaises was deprecated in py31 | ||||
| * | TST: fix unittest deprecation | Thomas A Caswell | 2019-10-30 | 1 | -63/+63 |
| | | | | | failUnless was deprecated in py31 | ||||
| * | tests for alternate dots for root in dns.name.from_unicode | kimbo | 2019-07-26 | 1 | -0/+16 |
| | | |||||
| * | remove the rest of the unicode string prefixes | Bob Halley | 2019-01-08 | 1 | -18/+18 |
| | | |||||
| * | When dealing with an IDNA 2003 non-punycode label, escapify it before unicode | Bob Halley | 2019-01-07 | 1 | -5/+5 |
| | | | | | | | conversion. This ensures that labels with codepoints that need escaping get it, as opposed to raising an exception because we tried to interpret a non-UTF-8 sequence as UTF-8. | ||||
| * | If there are no non-ASCII codepoints in the input, treat the name as | Bob Halley | 2019-01-06 | 1 | -0/+12 |
| | | | | | | | | | an ordinary domain name in from_text and do NOT apply any IDNA. This makes non-Unicode binary names like \150\151\152\153\154\155\156\157\158\159. work properly again. [Issue #270] | ||||
| * | Unicode label escapify was not escapifying special characters. | Bob Halley | 2019-01-05 | 1 | -0/+5 |
| | | | | | | | [Issue #339] This commit also simplifies code and changes u'string' to 'string'. | ||||
| * | fix coding lines broken by copyright update | Bob Halley | 2018-12-01 | 1 | -2/+2 |
| | | |||||
| * | disable spurious pylint errors for python 2.7 | Bob Halley | 2018-12-01 | 1 | -1/+1 |
| | | |||||
| * | update copyright | Bob Halley | 2018-12-01 | 1 | -0/+2 |
| | | |||||
| * | Initial type signatures | Janus | 2018-07-31 | 1 | -10/+8 |
| | | |||||
| * | update pylint settings for latest pylint | Bob Halley | 2017-05-30 | 1 | -2/+2 |
| | | |||||
| * | The IPv4 and IPv6 inet_ntoa() functions were returning binary | Bob Halley | 2017-01-02 | 1 | -1/+1 |
| | | | | | instead of text, a Py2/Py3 merge bug. | ||||
| * | to_e164() was returning binary instead of text. | Bob Halley | 2017-01-02 | 1 | -1/+1 |
| | | | | | Doco update for e164 | ||||
| * | Make IDNA default decode just decode the punycode. | Bob Halley | 2016-09-29 | 1 | -0/+15 |
| | | |||||
| * | dns.name.to_text() should return text. [Issue #209] | Bob Halley | 2016-09-27 | 1 | -9/+9 |
| | | |||||
| * | Add IDNA 2008 Practical mode, since IDNA 2008 is absurdly strict. | Bob Halley | 2016-09-26 | 1 | -0/+24 |
| | | |||||
| * | de-lint IDNA | Bob Halley | 2016-09-25 | 1 | -9/+8 |
| | | |||||
| * | A simpler and more extensible IDNA API. | Bob Halley | 2016-09-25 | 1 | -6/+16 |
| | | |||||
| * | Fix python3 IDNA 2008 testing bugs. | Bob Halley | 2016-09-21 | 1 | -3/+3 |
| | | |||||
| * | Only use IDNA 2008 if requested. | Bob Halley | 2016-09-21 | 1 | -12/+7 |
| | | |||||
| * | If the IDNA2008 module "idna" is available, use it and do IDNA 2008 encoding. | Bob Halley | 2016-09-19 | 1 | -2/+30 |
| | | |||||
| * | Pylint: remove unused variables | Martin | 2016-08-31 | 1 | -16/+16 |
| | | | | | This commit removes some unused variables (except those in iterations, list comprehensions and used for unpacking) | ||||
| * | Pylint: remove bare excepts | Martin | 2016-08-31 | 1 | -2/+2 |
| | | | | | Bare excepts should not be used, because they may hide system exceptions such as KeyboardInterupts or SystemExits. | ||||
| * | Merge pull request #177 from cdeccio/testNameFix | Bob Halley | 2016-07-02 | 1 | -3/+3 |
| |\ | | | | | Use meaningful test | ||||
| | * | Use meaningful test | Casey Deccio | 2016-06-24 | 1 | -3/+3 |
| | | | | | | | | | | | Test added in 257f2a didn't actually test the problem addressed in 257f2a. This one does. | ||||
| * | | Merge pull request #176 from cdeccio/fixRootNameText | Bob Halley | 2016-07-02 | 1 | -0/+8 |
| |\ \ | | | | | | | Fix dns.name.Name.to_text() | ||||
| | * | | Fix dns.name.Name.to_text() | Casey Deccio | 2016-06-24 | 1 | -0/+8 |
| | |/ | | | | | | | Fix dns.name.Name.to_text(), so root is displayed properly. | ||||
| * | | Py3: fix tests | Martin | 2016-07-02 | 1 | -1/+1 |
| | | | |||||
| * | | Pylint: tests: fix redefined functions | Martin | 2016-07-02 | 1 | -6/+6 |
| | | | | | | | | | | | | | | | This fix increases number of tests from Ran 424 tests in 13.300s to Ran 435 tests in 13.679s | ||||
| * | | Pylint: tests: disable line-too-long check locally | Martin | 2016-07-02 | 1 | -0/+3 |
| | | | |||||
| * | | Pylint: tests: Fix whitespace errors | Martin | 2016-07-02 | 1 | -2/+2 |
| | | | |||||
