<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/dateutil-git.git/dateutil/parser, branch master</title>
<subtitle>github.com: dateutil/dateutil.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/'/>
<entry>
<title>Move to src layout</title>
<updated>2021-07-16T15:08:09+00:00</updated>
<author>
<name>Mario Corchero</name>
<email>mcorcherojim@bloomberg.net</email>
</author>
<published>2021-07-16T09:06:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/commit/?id=da9ecd07a257cb5d1c7bfa08459b1ccfcabe6d23'/>
<id>da9ecd07a257cb5d1c7bfa08459b1ccfcabe6d23</id>
<content type='text'>
Move the project to the src layout to ensure we are testing on the
generated package rather than the checked out source tree.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Move the project to the src layout to ensure we are testing on the
generated package rather than the checked out source tree.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1125 from mariocj89/pu/strict-iso-sep</title>
<updated>2021-07-02T15:06:30+00:00</updated>
<author>
<name>Mario Corchero</name>
<email>mariocj89@gmail.com</email>
</author>
<published>2021-07-02T15:06:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/commit/?id=54a756d98a5a5e3e5627ab6b9f2fc8d72881b124'/>
<id>54a756d98a5a5e3e5627ab6b9f2fc8d72881b124</id>
<content type='text'>
isoparse: Fail with inconsistent time separators</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
isoparse: Fail with inconsistent time separators</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1060 from frenzymadness/decode</title>
<updated>2021-05-21T14:58:27+00:00</updated>
<author>
<name>Mario Corchero</name>
<email>mariocj89@gmail.com</email>
</author>
<published>2021-05-21T14:58:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/commit/?id=7ca3eb2699a0c4920febfbdddbb41a9ac78a4758'/>
<id>7ca3eb2699a0c4920febfbdddbb41a9ac78a4758</id>
<content type='text'>
Call .decode() only for binary data</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Call .decode() only for binary data</pre>
</div>
</content>
</entry>
<entry>
<title>Decode input str when reporting an error in `parse_isodate`</title>
<updated>2021-05-20T14:35:22+00:00</updated>
<author>
<name>Paul Brown</name>
<email>paul90brown@gmail.com</email>
</author>
<published>2021-05-04T02:32:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/commit/?id=5cf3e3cbfa1ba6a03830b4c26700dd0ad1e0399c'/>
<id>5cf3e3cbfa1ba6a03830b4c26700dd0ad1e0399c</id>
<content type='text'>
As the function is wrapped around a decorator that converts the input to
bytes, when an exception is raised that includes the value, it contains
the value as bytes (b"&lt;val&gt;"). To provide the expected str in Python 3,
decode that to unicode.

This will result in `u""` for Python 2 callers, but given that we plan
to drop support for Python 2 in the short term, it feels acceptable.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As the function is wrapped around a decorator that converts the input to
bytes, when an exception is raised that includes the value, it contains
the value as bytes (b"&lt;val&gt;"). To provide the expected str in Python 3,
decode that to unicode.

This will result in `u""` for Python 2 callers, but given that we plan
to drop support for Python 2 in the short term, it feels acceptable.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use already existing `str_len` in isoparse</title>
<updated>2021-05-20T06:06:03+00:00</updated>
<author>
<name>ArcLightSlavik</name>
<email>arclight.leskiv@gmail.com</email>
</author>
<published>2020-07-25T19:24:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/commit/?id=1376b59952721fe22d5e3ab05f184b6fd14693ea'/>
<id>1376b59952721fe22d5e3ab05f184b6fd14693ea</id>
<content type='text'>
Save an unnecessary len call.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Save an unnecessary len call.
</pre>
</div>
</content>
</entry>
<entry>
<title>Simplify parser._timelex handling of bytes and bytearray</title>
<updated>2021-05-20T05:59:23+00:00</updated>
<author>
<name>Lumir Balhar</name>
<email>lbalhar@redhat.com</email>
</author>
<published>2020-06-22T13:53:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/commit/?id=1426acd8d3e81f02cd0f2db0a5b197d7f7239934'/>
<id>1426acd8d3e81f02cd0f2db0a5b197d7f7239934</id>
<content type='text'>
We can handle both bytes and bytearray in the same way in Python 2 and
Python 3.

Co-authored-by: Mario Corchero &lt;mariocj89@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We can handle both bytes and bytearray in the same way in Python 2 and
Python 3.

Co-authored-by: Mario Corchero &lt;mariocj89@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>isoparse: Fail with inconsistent time separators</title>
<updated>2021-05-19T19:00:32+00:00</updated>
<author>
<name>Mario Corchero</name>
<email>mcorcherojim@bloomberg.net</email>
</author>
<published>2021-05-16T20:35:11+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/commit/?id=34906dcd4112197c8f6386f799c10b8a34cb248f'/>
<id>34906dcd4112197c8f6386f799c10b8a34cb248f</id>
<content type='text'>
Fail when separators are used inconsistently to split the time porting
of a string. Even if more restrictive, we have warned that we were going
to fail on invalid cases of ISO formatted strings. This will prevent
invalid iso formatted strings from being unexpectedly parsed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fail when separators are used inconsistently to split the time porting
of a string. Even if more restrictive, we have warned that we were going
to fail on invalid cases of ISO formatted strings. This will prevent
invalid iso formatted strings from being unexpectedly parsed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve documentation for parser errors/warnings</title>
<updated>2020-01-02T19:49:54+00:00</updated>
<author>
<name>Paul Ganssle</name>
<email>paul@ganssle.io</email>
</author>
<published>2020-01-02T16:51:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/commit/?id=6d89db3e530945362c1bc96e7530be3b359276f0'/>
<id>6d89db3e530945362c1bc96e7530be3b359276f0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Document that parser.parse raises ParserError</title>
<updated>2020-01-02T19:49:54+00:00</updated>
<author>
<name>Paul Ganssle</name>
<email>paul@ganssle.io</email>
</author>
<published>2020-01-02T16:31:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/commit/?id=579cd769f05a75855be37b32c13910cc04e3f86f'/>
<id>579cd769f05a75855be37b32c13910cc04e3f86f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update documentation links</title>
<updated>2020-01-02T19:49:50+00:00</updated>
<author>
<name>Paul Ganssle</name>
<email>paul@ganssle.io</email>
</author>
<published>2020-01-02T16:30:11+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/commit/?id=6edfecd6afb22fb2c7f0fd79259e40526fd20e2a'/>
<id>6edfecd6afb22fb2c7f0fd79259e40526fd20e2a</id>
<content type='text'>
Periodic update of all links that point to redirects or http targets
when an https target is available.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Periodic update of all links that point to redirects or http targets
when an https target is available.
</pre>
</div>
</content>
</entry>
</feed>
