<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/dateutil-git.git/dateutil/parser/isoparser.py, branch pganssle-patch-1</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>Use tz.UTC in isoparser</title>
<updated>2019-04-23T17:54:56+00:00</updated>
<author>
<name>Paul Ganssle</name>
<email>paul@ganssle.io</email>
</author>
<published>2019-04-23T17:15:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/commit/?id=4d5ddce323e8dc763d2b7b5624859afc639ba9c6'/>
<id>4d5ddce323e8dc763d2b7b5624859afc639ba9c6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Accept 'z' for 'Z' in isoparse</title>
<updated>2018-10-06T17:39:50+00:00</updated>
<author>
<name>Cheuk Ho</name>
<email>cheuk@Cheuks-MacBook-Pro.local</email>
</author>
<published>2018-10-02T13:47:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/commit/?id=91ba90e61941ddbcd16dbe8ef8441d0b8e51a084'/>
<id>91ba90e61941ddbcd16dbe8ef8441d0b8e51a084</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Accept more than 6 fractional digits in `isoparse`</title>
<updated>2018-07-03T19:08:32+00:00</updated>
<author>
<name>Jay Weisskopf</name>
<email>jay@jayschwa.net</email>
</author>
<published>2018-07-03T19:08:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/commit/?id=9d2edc0e17cc16eaea49dbea379b85ba4f1e610e'/>
<id>9d2edc0e17cc16eaea49dbea379b85ba4f1e610e</id>
<content type='text'>
RFC 3339 does not specify a limit to the number of fractional digits
that can be provided. In the wild, languages like Go will provide up
to 9 digits by default.

Since the standard library's `datetime` only supports precision down
to microseconds, any extra digits in the fractional component are
truncated.

Fixes #786
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
RFC 3339 does not specify a limit to the number of fractional digits
that can be provided. In the wild, languages like Go will provide up
to 9 digits by default.

Since the standard library's `datetime` only supports precision down
to microseconds, any extra digits in the fractional component are
truncated.

Fixes #786
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix bug in parse_isotime when hour is 24</title>
<updated>2018-06-20T14:21:00+00:00</updated>
<author>
<name>Paul Ganssle</name>
<email>paul@ganssle.io</email>
</author>
<published>2018-06-20T14:21: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=f48e256d62a114e2b474f7c60b4a7add43046bd6'/>
<id>f48e256d62a114e2b474f7c60b4a7add43046bd6</id>
<content type='text'>
The old behavior parsed the string, modified the 24 component to 0
and then parsed the string a second time, passing an unmodified
version to the datetime.time constructor.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The old behavior parsed the string, modified the 24 component to 0
and then parsed the string a second time, passing an unmodified
version to the datetime.time constructor.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix isoparser misinterprets T24:00</title>
<updated>2018-06-08T11:14:09+00:00</updated>
<author>
<name>Ho</name>
<email>921345@emea.kuoni.int</email>
</author>
<published>2018-06-08T10:45:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/commit/?id=424a438b3791962e50590410972fdb0ebfd7b4a2'/>
<id>424a438b3791962e50590410972fdb0ebfd7b4a2</id>
<content type='text'>
- Update tests with the correct examples
- Update AUTHORS.md
- Closes GH issue #658
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Update tests with the correct examples
- Update AUTHORS.md
- Closes GH issue #658
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for comma separator in isoparse</title>
<updated>2018-05-15T16:58:38+00:00</updated>
<author>
<name>Paul Ganssle</name>
<email>paul@ganssle.io</email>
</author>
<published>2018-05-15T16:51:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/commit/?id=86c8f5bc16fb5c29722e456d8b00c120835176f5'/>
<id>86c8f5bc16fb5c29722e456d8b00c120835176f5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add versionadded tags to isoparse and utils</title>
<updated>2018-04-17T15:18:40+00:00</updated>
<author>
<name>Paul Ganssle</name>
<email>paul@ganssle.io</email>
</author>
<published>2018-04-17T15:18:40+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/commit/?id=c42e5c0a4d183b643d784bac3aedb406c3f7e8d1'/>
<id>c42e5c0a4d183b643d784bac3aedb406c3f7e8d1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Relax strictness of default isoparse behavior</title>
<updated>2018-03-10T23:10:32+00:00</updated>
<author>
<name>Paul Ganssle</name>
<email>paul@ganssle.io</email>
</author>
<published>2018-03-10T23:10:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/commit/?id=c25fd9e40e3620b16e2b6161272ac7ea43dc4590'/>
<id>c25fd9e40e3620b16e2b6161272ac7ea43dc4590</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve isoparse limitations documentation</title>
<updated>2018-03-10T23:05:53+00:00</updated>
<author>
<name>Paul Ganssle</name>
<email>paul@ganssle.io</email>
</author>
<published>2018-03-10T21:20:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/commit/?id=eb701cf58c65f04486e4d1e37249df788a739a38'/>
<id>eb701cf58c65f04486e4d1e37249df788a739a38</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed support for YYYYMM format</title>
<updated>2017-12-09T18:12:20+00:00</updated>
<author>
<name>Kirit Thadaka</name>
<email>kirit.thadaka@gmail.com</email>
</author>
<published>2017-12-08T15:52:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/dateutil-git.git/commit/?id=e972d63bf2b5bb00d15c026f45265cd8988efe8b'/>
<id>e972d63bf2b5bb00d15c026f45265cd8988efe8b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
