<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/dnspython.git/dns/rrset.py, branch rrset-reader</title>
<subtitle>github.com: rthalley/dnspython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/'/>
<entry>
<title>fix rrset match signature problems</title>
<updated>2020-09-03T14:46:53+00:00</updated>
<author>
<name>Bob Halley</name>
<email>halley@dnspython.org</email>
</author>
<published>2020-09-03T14:46:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=78362aa6b9bce8f0942577c72773cb36c5050b92'/>
<id>78362aa6b9bce8f0942577c72773cb36c5050b92</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>rename masterfile to zonefile</title>
<updated>2020-08-19T23:14:24+00:00</updated>
<author>
<name>Bob Halley</name>
<email>halley@dnspython.org</email>
</author>
<published>2020-08-19T23:14:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=bccfd05f2b89adcb379fcebb7d0c4140aca4a6fb'/>
<id>bccfd05f2b89adcb379fcebb7d0c4140aca4a6fb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>The from_text_list() methods for Rdataset and RRset should allow the</title>
<updated>2020-08-08T14:25:53+00:00</updated>
<author>
<name>Bob Halley</name>
<email>halley@dnspython.org</email>
</author>
<published>2020-08-08T14:25:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=24d79492316b88c6b3082bf8d28dd13ca27e2465'/>
<id>24d79492316b88c6b3082bf8d28dd13ca27e2465</id>
<content type='text'>
full set of parameters that rdata's from_text() allows (i.e. origin,
relativize, and relativize_to).

These parameters were added though the order is slightly different
from dns.rdata.to_text() as in the the rdata version idna_codec is
after origin, relativize, and relativize_to.  We already had an
idna_codec for the Rdataset and RRset functions, so we added after it
to keep backwards compatibility.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
full set of parameters that rdata's from_text() allows (i.e. origin,
relativize, and relativize_to).

These parameters were added though the order is slightly different
from dns.rdata.to_text() as in the the rdata version idna_codec is
after origin, relativize, and relativize_to.  We already had an
idna_codec for the Rdataset and RRset functions, so we added after it
to keep backwards compatibility.
</pre>
</div>
</content>
</entry>
<entry>
<title>pylint linting</title>
<updated>2020-07-31T23:03:09+00:00</updated>
<author>
<name>Bob Halley</name>
<email>halley@dnspython.org</email>
</author>
<published>2020-07-31T23:03:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=049eedd8ab25f211d0fcd88726098327cc27ddb2'/>
<id>049eedd8ab25f211d0fcd88726098327cc27ddb2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Minor Python 3 cleanups.</title>
<updated>2020-06-03T22:56:58+00:00</updated>
<author>
<name>Brian Wellington</name>
<email>bwelling@xbill.org</email>
</author>
<published>2020-06-03T22:56:58+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=cc55d17f5478751da21a7b325b2b46e8d94d8ffb'/>
<id>cc55d17f5478751da21a7b325b2b46e8d94d8ffb</id>
<content type='text'>
Classes inherit from object by default; there's no need to explicitly
include this.

Replace super(Foo, self) with super().
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Classes inherit from object by default; there's no need to explicitly
include this.

Replace super(Foo, self) with super().
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove dns.rdata{type,class}.to_enum.</title>
<updated>2020-05-21T17:53:24+00:00</updated>
<author>
<name>Brian Wellington</name>
<email>bwelling@xbill.org</email>
</author>
<published>2020-05-21T17:53:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=a1cddfabca128d326b5e6b6eaab21dff7d2b5bcc'/>
<id>a1cddfabca128d326b5e6b6eaab21dff7d2b5bcc</id>
<content type='text'>
These methods (which convert a str/int into an enum/int) shouldn't be
commonly used by external code, so don't need to exist at the module
level.  The make() method on the enum class (renamed from to_enum()) can
still be used, and the internal callers have been updated to use it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These methods (which convert a str/int into an enum/int) shouldn't be
commonly used by external code, so don't need to exist at the module
level.  The make() method on the enum class (renamed from to_enum()) can
still be used, and the internal callers have been updated to use it.
</pre>
</div>
</content>
</entry>
<entry>
<title>Start converting rdatatype/rdataclass to enum.</title>
<updated>2020-05-18T17:25:11+00:00</updated>
<author>
<name>Brian Wellington</name>
<email>bwelling@xbill.org</email>
</author>
<published>2020-05-18T17:25:11+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=65e107bd0d43a90b0d0d016b594f6587e2875132'/>
<id>65e107bd0d43a90b0d0d016b594f6587e2875132</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add idna_codec doco to from_text_list()</title>
<updated>2020-05-08T14:07:37+00:00</updated>
<author>
<name>Bob Halley</name>
<email>halley@dnspython.org</email>
</author>
<published>2020-05-08T14:07:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=7adc9b03e66b067291843c2808317fc8d3092c8b'/>
<id>7adc9b03e66b067291843c2808317fc8d3092c8b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>IDNA support for zones, messages, names in rdata, rrsets, and rdatasets.</title>
<updated>2020-05-03T21:49:55+00:00</updated>
<author>
<name>Bob Halley</name>
<email>halley@dnspython.org</email>
</author>
<published>2020-05-03T21:49:55+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=f721d7b85d488327699e4cd0e71693dc8eb0f12e'/>
<id>f721d7b85d488327699e4cd0e71693dc8eb0f12e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve rdataset/rrset repr to include rdata.</title>
<updated>2020-04-01T19:49:21+00:00</updated>
<author>
<name>Brian Wellington</name>
<email>bwelling@xbill.org</email>
</author>
<published>2020-04-01T19:49:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dnspython.git/commit/?id=2e5fc5a6ff87d254020d713eaba9c8942221a500'/>
<id>2e5fc5a6ff87d254020d713eaba9c8942221a500</id>
<content type='text'>
Previously, repr() of rdataset/rrset looked like this:
&lt;DNS IN A rdataset&gt;
&lt;DNS IN TXT rdataset&gt;
&lt;DNS IN RRSIG rdataset&gt;

&lt;DNS example. IN A RRset&gt;
&lt;DNS example. IN TXT RRset&gt;
&lt;DNS example. IN RRSIG(NSEC) RRset&gt;

With this patch, it they look like:
&lt;DNS IN A rdataset: [&lt;1.2.3.4&gt;, &lt;5.6.7.8&gt;]&gt;
&lt;DNS IN TXT rdataset: [&lt;"foo" "bar"&gt;, &lt;"baz"&gt;]&gt;
&lt;DNS IN RRSIG(NSEC) rdataset: [&lt;NSEC 1 3 3600 20200101000000 20030101000000 2143 foo MxFcby9k/yvedMfQgKzhH5er0Mu/vILz 45IkskceFGgiWC...&gt;]&gt;

&lt;DNS example. IN A RRset: [&lt;1.2.3.4&gt;, &lt;5.6.7.8&gt;]&gt;
&lt;DNS example. IN TXT RRset: [&lt;"foo" "bar"&gt;, &lt;"baz"&gt;]&gt;
&lt;DNS example. IN RRSIG(NSEC) RRset: [&lt;NSEC 1 3 3600 20200101000000 20030101000000 2143 foo MxFcby9k/yvedMfQgKzhH5er0Mu/vILz 45IkskceFGgiWC...&gt;]&gt;

Note that each rdata is truncated to 100 characters.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, repr() of rdataset/rrset looked like this:
&lt;DNS IN A rdataset&gt;
&lt;DNS IN TXT rdataset&gt;
&lt;DNS IN RRSIG rdataset&gt;

&lt;DNS example. IN A RRset&gt;
&lt;DNS example. IN TXT RRset&gt;
&lt;DNS example. IN RRSIG(NSEC) RRset&gt;

With this patch, it they look like:
&lt;DNS IN A rdataset: [&lt;1.2.3.4&gt;, &lt;5.6.7.8&gt;]&gt;
&lt;DNS IN TXT rdataset: [&lt;"foo" "bar"&gt;, &lt;"baz"&gt;]&gt;
&lt;DNS IN RRSIG(NSEC) rdataset: [&lt;NSEC 1 3 3600 20200101000000 20030101000000 2143 foo MxFcby9k/yvedMfQgKzhH5er0Mu/vILz 45IkskceFGgiWC...&gt;]&gt;

&lt;DNS example. IN A RRset: [&lt;1.2.3.4&gt;, &lt;5.6.7.8&gt;]&gt;
&lt;DNS example. IN TXT RRset: [&lt;"foo" "bar"&gt;, &lt;"baz"&gt;]&gt;
&lt;DNS example. IN RRSIG(NSEC) RRset: [&lt;NSEC 1 3 3600 20200101000000 20030101000000 2143 foo MxFcby9k/yvedMfQgKzhH5er0Mu/vILz 45IkskceFGgiWC...&gt;]&gt;

Note that each rdata is truncated to 100 characters.
</pre>
</div>
</content>
</entry>
</feed>
